/* Global Styles */
body {
    font-family: Arial, sans-serif; /* Conservation de la police */
    margin: 0;
    padding: 0;
    background-color: #F8F9FF;
    color: #222;
    text-align: center;
    transition: background 0.3s ease-in-out;
}
html, body {
    overflow-x: hidden; /* Empêche le défilement horizontal */
    max-width: 100%; /* Évite tout dépassement */
}

/* Header - Effet Glassmorphism */
header {
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.8s ease-out;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Animation d'apparition */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Conteneur */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo img {
    height: 40px;
    transition: transform 0.3s ease-in-out;
}

.logo img:hover {
    transform: scale(1.1);
}

/* MENU Desktop - Effet de soulignement animé */
.desktop-menu {
    display: flex;
    gap: 20px;
}

.desktop-menu a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.desktop-menu a::after {
    content: "";
    width: 0;
    height: 3px;
    background: #0035FC;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.desktop-menu a:hover {
    color: #0035FC;
}

.desktop-menu a:hover::after {
    width: 100%;
}

/* Auth Buttons - Suppression du contour bleu en hover */
.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Boutons Modernes */
.btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 12px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Bouton Auth par défaut */
.btn.small {
    border: 2px solid #0035FC;
    background-color: white;
    color: #0035FC;
}

/* Suppression du contour bleu */
.btn.small:hover {
    border-color: transparent !important;
    background-color: black !important;
    color: white !important;
}

/* Effet au clic (Vert) */
.btn:active {
    background-color: #03B347 !important;
    color: white !important;
    transform: scale(0.95);
}

/* Bouton principal */
.btn.primary {
    background: linear-gradient(135deg, #0035FC, #005AFF);
    color: white !important;
    box-shadow: 0 4px 10px rgba(0, 53, 252, 0.3);
}

/* Hover effet principal */
.btn.primary:hover {
    background: black !important;
    color: white !important;
    transform: scale(1.05);
}

/* Animation de chargement */
.btn.loading {
    color: transparent !important;
    pointer-events: none;
}

/* Ajout d'un spinner lors du chargement */
.btn.loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    transform: translate(-50%, -50%);
}

/* Animation du spinner */
@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    animation: fadeIn 1s ease-in-out;
}

/* Titre */
h1 {
    font-size: 36px;
    color: #0035FC;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
    animation-delay: 0.3s;
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Badge */
.badge {
    background: rgba(0, 53, 252, 0.1);
    color: #0035FC;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 14px;
    display: inline-block;
    transform: scale(0.8);
    animation: popUp 0.6s ease-out forwards;
}

/* Animation du badge */
@keyframes popUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Image Dashboard */
.dashboard-image {
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .container {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Mobile - Ajustements pour un meilleur toucher */
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    /* Effet tactile */
    .btn:active {
        transform: scale(0.97);
        background-color: #03B347 !important; /* Vert au lieu du gris */
    }
}

/* Animation clignotement curseur */
@keyframes blinkCursor {
    50% { border-right-color: transparent; }
}

#dynamic-text {
    font-weight: bold;
    color: #000000;
    border-right: 2px solid #000000;
    padding-right: 5px;
    animation: blinkCursor 0.8s steps(2, start) infinite;
}
/* Désactiver l'effet gris au clic sur mobile */
.btn:active {
    background-color: #03B347 !important; /* Vert forcé */
    color: white !important;
    transform: scale(0.95);
}

/* Supprimer l'effet de sélection gris sur mobile */
.btn, a, button {
    -webkit-tap-highlight-color: transparent;
}


/* Effet "..." qui s'anime */
.dots::after {
    content: "";
    display: inline-block;
    animation: dotsAnim 1s steps(4, end) infinite;
}

/* Animation des trois petits points */
@keyframes dotsAnim {
    0% { content: ""; }
    25% { content: "."; }
    50% { content: ".."; }
    75% { content: "..."; }
    100% { content: ""; }
}

/* Section Fonctionnalités */
.features {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
}

.features-header {
    margin-bottom: 80px;
}

.features h2 {
    font-size: 42px;
    color: #0035FC;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.features h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #03c74f;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.features .subtitle {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes sur ordinateur */
    gap: 40px;
}

.feature-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 53, 252, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 53, 252, 0.2);
}

.feature-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 24px;
    color: #0035FC;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
    }
}

@media (max-width: 768px) {
    .features h2 {
        font-size: 32px;
    }

    .features .subtitle {
        font-size: 16px;
    }

    .feature-grid {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
    }

    .feature-card {
        padding: 30px 20px;
    }
}
.feature-icon {
    font-size: 4rem;
}

/* Section Pourquoi investir dans le SMS marketing ? */
.why-sms {
    padding: 100px 20px;
    background-color: #0035FC;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-sms-header {
    margin-bottom: 80px;
}

.why-sms h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    color: #ffffff; /* Titre blanc à 100% */
}

.why-sms h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.why-sms .subtitle {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
    color: #ffffff; /* Sous-titre blanc à 100% */
}

.why-sms-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-sms-card {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-sms-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-icon img {
    width: 60px;
    height: 60px;
    margin-right: 25px;
    transition: transform 0.3s ease;
}

.why-sms-card:hover .card-icon img {
    transform: scale(1.1);
}

.card-text {
    text-align: left;
}

.card-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffffff; /* Titre de carte blanc à 100% */
}

.card-text p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    color: #ffffff; /* Texte de carte blanc à 100% */
}

/* Effet de parallaxe */
.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
}

.parallax-layer:nth-child(1) {
    background-image: url('https://www.transparenttextures.com/patterns/always-grey.png');
    opacity: 0.1;
}

.parallax-layer:nth-child(2) {
    background-image: url('https://www.transparenttextures.com/patterns/diagmonds.png');
    opacity: 0.2;
}

.parallax-layer:nth-child(3) {
    background-image: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-sms h2 {
        font-size: 32px;
    }

    .why-sms .subtitle {
        font-size: 16px;
    }

    .why-sms-card {
        flex-direction: column;
        text-align: center;
    }

    .card-icon img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.card-icon {
    font-size: 4rem;
    text-align: center;
}

/* Section Aperçu des campagnes SMS */
.campaigns {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
}

.campaigns-header {
    margin-bottom: 80px;
}

.campaigns h2 {
    font-size: 42px;
    color: #0035FC;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.campaigns h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #03c74f;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.campaigns .subtitle {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.campaign-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff; /* Fond blanc pour la carte */
}

.campaign-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.campaign-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px 16px 0 0; /* Arrondis uniquement en haut */
}

.campaign-footer {
    padding: 20px;
    background-color: #0035FC; /* Fond bleu */
    color: #ffffff;
    text-align: center;
    border-radius: 0 0 16px 16px; /* Arrondis uniquement en bas */
}

.campaign-footer p {
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .campaigns h2 {
        font-size: 32px;
    }

    .campaigns .subtitle {
        font-size: 16px;
    }

    .campaign-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}




/* Section Avis des utilisateurs */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0035FC, #16213e);
    color: white;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 60px;
}

.testimonials h2 {
    display: inline-block; /* Pour que le fond s'adapte à la taille du texte */
    padding: 15px 30px; /* Espacement intérieur */
    background-color: white; /* Fond blanc */
    color: #0035FC; /* Texte en bleu */
    border-radius: 10px; /* Coins arrondis */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Ombre légère */
    font-size: 2.5rem; /* Taille de la police */
    font-weight: 800; /* Poids de la police */
    margin-bottom: 1rem; /* Marge en bas */
    border: 2px solid #0035FC; /* Bordure bleue */
}

.testimonials .subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -15px;
    left: -10px;
}

.testimonial-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 20px 0;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 2px;
}

.author-info h4 {
    font-size: 1.1rem;
    color: white;
    margin: 0;
}

.author-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonials .subtitle {
        font-size: 0.9rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text p {
        font-size: 0.9rem;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }
}





/* Section Appel à l'action */
.cta {
    padding: 100px 20px;
    background-color: #0035FC;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.cta h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.cta .subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px; /* Augmentation de la taille */
    background-color: #03B347; /* Vert */
    color: #ffffff;
    font-size: 20px; /* Texte légèrement plus grand */
    font-weight: bold;
    text-decoration: none;
    border-radius: 60px; /* Ajustement pour garder une bonne proportion */
    box-shadow: 0 10px 25px rgba(3, 179, 71, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(3, 179, 71, 0.4);
}

.cta-button:hover::before {
    opacity: 1;
}


/* Effet de particules animées */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 5s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    left: 70%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta h2 {
        font-size: 36px;
    }

    .cta .subtitle {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .cta h2 {
        font-size: 28px;
    }

    .cta .subtitle {
        font-size: 14px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Section Plateforme ultra simple à utiliser */
.platform {
    padding: 80px 20px; /* Réduction du padding */
    background-color: #F8F9FF; /* Fond blanc sale */
    text-align: center;
}

.platform-header {
    margin-bottom: 60px; /* Ajustement pour plus d’équilibre */
}

.platform h2 {
    font-size: 42px;
    color: #0035FC;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}

.platform h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #03c74f;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.platform .subtitle {
    font-size: 18px;
    color: #555;
    max-width: 90%; /* Évite les débordements */
    margin: 0 auto;
    line-height: 1.6;
}

.platform-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-image {
    position: relative;
    text-align: center;
}

.platform-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.image-caption {
    margin-top: 20px;
    font-size: 16px;
    color: #555;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .platform {
        padding: 60px 15px; /* Moins d’espace en hauteur */
    }
    .platform-content {
        flex-direction: column;
        gap: 50px;
    }
    .platform-image img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .platform {
        padding: 40px 10px; /* Encore moins de padding */
    }
    .platform h2 {
        font-size: 30px;
    }
    .platform .subtitle {
        font-size: 16px;
        max-width: 95%; /* Ajustement pour éviter les dépassements */
    }
    .platform-image img {
        max-width: 280px;
    }
    .image-caption {
        font-size: 14px;
    }
}



/* Section Rejoindre notre communauté */
.community-section {
    padding: 100px 20px;
    background-color: #F8F9FF; /* Fond blanc sale */
    color: #222;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.community-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.community-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.community-content {
    text-align: left;
}

.community-content h2 {
    font-size: 42px;
    color: #0035FC;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
}

.community-content h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #03c74f;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.community-content .subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.community-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.community-benefits li {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.community-benefits .icon {
    font-size: 24px;
    color: #0035FC;
}

.community-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #25D366; /* Vert WhatsApp */
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 40px;
}

.community-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Effet de particules animées */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(0, 53, 252, 0.2); /* Particules bleues */
    border-radius: 50%;
    animation: float 5s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    left: 70%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 50%;
    animation-delay: 4s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .community-container {
        flex-direction: column;
        gap: 40px;
    }

    .community-content {
        text-align: center;
    }

    .community-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .community-content h2 {
        font-size: 32px;
    }

    .community-content .subtitle {
        font-size: 16px;
    }

    .community-benefits li {
        font-size: 16px;
    }

    .community-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}



/* Style général */
footer {
    background: linear-gradient(135deg, #0035FC, #0066FF);
    color: white;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    overflow: hidden;
    position: relative;
}



@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Conteneur principal */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section supérieure */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Slogan */
.footer-slogan .slogan {
    font-size: 45px; /* Taille augmentée pour ordinateur */
    font-weight: bold;
    color: white;
    margin: 0;
    text-align: left; /* Alignement à gauche sur ordinateur */
}

/* Réseaux sociaux */
.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-icon img:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5); /* Ombre verte au survol */
}

/* Section liens */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.link-item {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: color 0.3s;
}

.link-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.link-item:hover::after {
    width: 100%;
}

.link-item:hover {
    color: #00FF00; /* Vert au survol */
}

/* Section inférieure */
.footer-bottom {
    margin-top: 40px;
    font-size: 14px;
    color: #E0E0E0;
}

.footer-bottom a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #00FF00; /* Vert au survol */
}

/* Animation de fond */
@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

footer {
    background-size: 200% 200%;
    animation: gradientBackground 10s ease infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-slogan .slogan {
        font-size: 22px; /* Taille adaptée pour mobile */
        text-align: center; /* Centrer le slogan sur mobile */
        margin-bottom: 20px; /* Espacement supplémentaire */
    }

    .footer-social {
        justify-content: center; /* Centrer les icônes sur mobile */
    }
}




/*Section prix officiel forfaits*/
.pricing h2 {
    font-size: 42px;
    color: #0035FC;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    text-align: center;
}

.pricing h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #03c74f;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.pricing-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Espace entre les cartes */
    max-width: 1200px; /* Largeur maximale du conteneur */
    margin: 0 auto; /* Centrer le conteneur */
    flex-wrap: nowrap; /* Empêche les cartes de passer à la ligne */
}

.pricing-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px; /* Largeur de chaque carte */
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* Empêche les cartes de rétrécir */
}

.pricing-card h3 {
    font-size: 22px;
    color: #0035FC;
    margin-bottom: 20px;
    font-weight: bold;
}

.price-highlight {
    margin-bottom: 20px;
}

.price {
    font-size: 36px;
    color: #0035FC;
    font-weight: bold;
    display: block;
}

.per-sms {
    font-size: 18px;
    color: #555;
}

.pricing-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-details ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-details ul li img {
    width: 20px;
    height: 20px;
}

.subscribe, .active-plan {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
}

.subscribe {
    background: #0035FC;
    color: white;
}

.active-plan {
    background: #ddd;
    color: #555;
    cursor: default;
}

/* Mise en avant du forfait Premium */
.popular {
    border: 2px solid #0035FC;
    position: relative;
}

.popular .badge {
    background: #03c74f;
    color: white;
    padding: 5px 10px;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
}
.prolongement1 {
            background-color: #03c74f;
            height: 30px; /* Ajuste la hauteur selon le besoin */
        }
.prolongement {
            background-color: #F8F9FF;
            height: 30px; /* Ajuste la hauteur selon le besoin */
        }    
        
        
        
        /* Media query pour les écrans mobiles */
@media (max-width: 768px) {
    .pricing-content {
        flex-direction: row; /* Affiche les cartes en ligne */
        gap: 20px; /* Réduit l'espace entre les cartes */
        padding: 0 20px; /* Ajoute un peu de marge sur les côtés */
        overflow-x: auto; /* Permet le défilement horizontal si nécessaire */
    }

    .pricing-card {
        width: 250px; /* Réduit la largeur des cartes pour mobile */
        padding: 20px; /* Réduit le padding pour gagner de la place */
        flex-shrink: 0; /* Empêche les cartes de rétrécir */
    }

    .pricing h2 {
        font-size: 32px; /* Réduit la taille du titre pour mobile */
    }
}