/*Google font*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,500&display=swap');
*{
    font-family: "Poppins", sans-serif;
    margin: 0 ;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
}
/*quelques variables*/
:root{
    --main-color:#ff2c1f;
    --text-color:#020307;
    --bg-color:#fff;
}
/*customisaton de la bar de navigation*/
html::-webkit-scrollbar{
    width: 0.5rem;
    background: var(--text-color);
}
html::-webkit-scrollbar-thumb{
    background: var(--main-color);
    border-radius: 5rem;
}
html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable; /* Réserve l'espace de la scrollbar toujours */
}
body{
    background: var(--text-color);
    color: var(--bg-color);
}
section{
    padding: 4.5rem 0 1.5rem;
}
header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
    transition: 0.5s;   
}
header.shadow{
    background: var(--bg-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
/*on a utiliser ca pour pouvoir afficher les ecriture sur le tableau de bord principal*/
header.shadow .navbar a{
    color: var(--text-color);
}
header.shadow .logo{
    color: var(--text-color);
}
.logo{
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-color);
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}
.logo .bx{
    font-size: 24px;
    color: var(--main-color);
    color: red;
}
.navbar{
    display: flex;
    column-gap: 5rem;
}
.navbar li{
    position: relative;
}
.navbar  a{
    font-size: 1rem;
    font-weight: 500;
    color: var(--bg-color);
} 
.navbar a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--main-color);
    bottom: -4px;
    left: 0;
    transition: 0.4s all linear;
}
.navbar a:hover::after,
.navbar .home-active::after{
    width: 100%;
} 
#menu-icon{
    font-size: 24px;
    cursor: pointer;
    z-index: 1000001;
    display: none;
}
.btn{
    padding: 0.7rem 1.4rem;
    background: var(--main-color);
    color: var(--bg-color);
    font-weight: 400;
    border-radius: 0.5rem;
}
.btn:hover{
    background: red;
}
.conatiner{
    width: 100%;
    min-height: 640px;
    position: relative;
    display: flex;
    align-items: center;
    background: rgb(2, 3, 7, 0.4);
}
.conatiner img{
    position: absolute;
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    z-index:-1;
}
.swiper-pagination-bullet{
    width: 6px !important;
    height: 6px !important;
    border-radius: 0.2rem !important;
    background-color: var(--bg-color) !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active{
    width: 1.5rem !important;
    background: var(--main-color) !important;
}
.home-text{
    z-index: 1000;
    padding: 0 150px;
}
.home-text span{
    color:var(--bg-color) ;
    font-weight: 500;
    text-transform: uppercase;
}
.home-text h1{
    color: var(--bg-color);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.play{
    position: absolute;
    right: 4rem;
    bottom:10%;
    
}
.play .bx{
    background: var(--bg-color);
    padding: 10px;
    font-size: 2rem;
    border-radius: 50%;
    border: 4px solid rgb(2, 3, 7, 0.4);
    color: var(--main-color);

}
.play .bx:hover{
    background: var(--main-color);
    color: var(--bg-color);
    transition: 0.2s all;
}
.heading{
   max-width: 968px;
   margin-left: auto;
   margin-right: auto;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid var(--main-color);
}
/*pour pouvoir les alligner en bande*/
.services-conatiner{
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,auto));
    gap: 1rem;
    margin-top: 2rem;
}
.box .box-img{
    width: 100%;
    height: 270px;
}
.box .box-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}
.box .box-img img:hover{
    transform: translateY(-10px);
    transition: 0.2s all linear;
}
/*pour modifier les titres des boites*/
.box h3{
    font-size: 0.9rem;
    font-weight: 500;
}
.box span{
    font-size: 13px;
}
.coming-container{
    display: grid;
    gap: 1rem;
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}
.coming-container .box-img img:hover{
    transform: translateY(0);
}
.coming-container .box{
    width: 100px;
}
/*pour modifier partie newsletter*/
.newsletter{
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: baseline;
    row-gap: 2rem;
}
.newsletter h2{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}
.newsletter form{
    background: var(--bg-color);
    padding: 10px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
}
.newsletter form input{
    border: none;
    outline: none;
}
.newsletter form .email{
    width: 200px;
}
.newsletter form input ::placeholder{
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 400;
}
.newsletter .btn{
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}
.footer{
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}
.social{
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}
.social .bxl{
    background: var(--bg-color);
    padding: 2px;
    font-size: 2rem;
    border-radius: 50%;
    border: 4px solid rgb(2, 3, 7, 0.4);
    color: var(--main-color);
}
.social .bxl:hover{
    background: var(--main-color);
    color: var(--bg-color);
    transition: 0.2s all linear;
}
.copyright{
    padding: 20px;
    text-align: center;
    color: var(--bg-color);
}

/* ===== SECTION COMPARAISON ===== */
.comparaison {
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.05) 0%, rgba(255, 44, 31, 0.02) 100%);
    padding: 6rem 2rem !important;
}

.comparaison-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

.comparaison-header .heading {
    color: var(--bg-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.comparaison-header .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.comparaison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    align-items: stretch;
}

.comparaison-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    border: 2px solid transparent;
    overflow: hidden;
}

.comparaison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.comparaison-card:hover::before {
    left: 100%;
}

.comparaison-card.ordinary {
    opacity: 0.85;
    border-color: rgba(2, 3, 7, 0.1);
}

.comparaison-card.ordinary:hover {
    opacity: 0.95;
    transform: translateY(5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.comparaison-card.success {
    border: 2px solid var(--main-color);
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.comparaison-card.success:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 44, 31, 0.3);
}

.comparaison-card.featured {
    position: relative;
    z-index: 10;
}

.card-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.card-header h3 i {
    font-size: 2rem;
}

.card-header .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    color: var(--text-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-header .success-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.featured-header {
    text-align: center;
}

.best-choice {
    display: block;
    color: var(--main-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.features-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comparaison-card.success .features-list li:hover {
    transform: translateX(8px);
}

.comparaison-card.ordinary .features-list li:hover {
    opacity: 0.7;
}

.features-list .icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.features-list .text {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.cta-container {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 44, 31, 0.2);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff4831 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 44, 31, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 44, 31, 0.4);
}

.guarantee {
    font-size: 0.85rem;
    color: var(--main-color);
    margin-top: 0.8rem;
    font-weight: 600;
}

/* Avantages visuels */
.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 3rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    color: var(--text-color);
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--main-color);
    box-shadow: 0 15px 40px rgba(255, 44, 31, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--main-color);
}

.benefit-item p {
    color: rgba(2, 3, 7, 0.7);
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width:768px){
    .home-text {
        padding: 0 1000px;
    }
}
@media (max-width:991px){
    header{
        padding: 18px 4%;
    }
    section{
        padding: 50px 4%;
    }
    .home-text {
        padding: 0 4%; 
    }
    .home-text h1{
        font-size: 3rem;
    }
}
@media (max-width:774px){    /* Responsif Comparaison */
    .comparaison-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparaison-card {
        padding: 2rem;
    }

    .card-header h3 {
        font-size: 1.5rem;
    }

    .comparaison-header .heading {
        font-size: 2rem;
    }

    .comparaison-header .subtitle {
        font-size: 0.95rem;
    }

    .benefits-showcase {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }
    header{
        padding: 12px 4%;
    }
    #menu-icon{
        display: initial;
        color: var(--text-color);
    }
    .header.shadow #menu-icon{
        color: var(--bg-color);
    }
    .navbar{
        position: absolute;
        top: -570px;
        left: 0;
        right: 0;
        display: flex;
        background: var(--bg-color);
        row-gap: 1.4rem;
        flex-direction: column;
        padding: 20px;
        box-shadow: 4px 4px 0 4px rgb(14 55 54 / 15%);
        transition: 0.2s all linear;
        text-align: center;
    }
    .navbar a{
        color: var(--text-color);
        width: 100%;
    }
    .navbar a:hover{
        color: var(--main-color);
        border-bottom: 2px solid var(--main-color);
    }
    .navbar a::after{
        display: none;
    }
    .navbar.active{
        top: 100%;
    }
    .home-text h1{
        font-size: 2.4rem;
    }
    .btn{
        padding: 0.6rem 1.2rem;
    }
    .movie-container{
        grid-template-columns: repeat(auto-fit,minmax(160px,auto));
    }
}
@media (max-width:472px){
    .newsletter form .email{
        width: auto;
    }
    .footer{
        flex-direction: column;
        align-items: center;
        row-gap: 1rem;
    }
}
@media (max-width:370px){
    header{
        padding: 6px 4%;
    }
    .home-text h1{
        font-size: 1.7rem;
    }
    .play{
        right: 2rem;
        bottom: 8%;
    }
    .play .bx{
        padding: 7px;
    }
    .movie-container{
        grid-template-columns: repeat(auto-fit,minmax(140px,auto));
    }
    .box .box-img{
        height: 240px;
    }
}

.hero-content {
    text-align:center ;
    animation: slideUp 0.8s ease-out;
}
.hero-content h1 p{
    text-align: justify;
}

.hero-content h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--main-color), #ff6b47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content strong {
    color: var(--main-color);
    font-weight: 700;
}

.cta-main {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b47 100%);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.4s ease;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 44, 31, 0.3);
}

.cta-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 44, 31, 0.5);
}

/* ===== SECTION PROCESSUS TIMELINE ===== */
.process {
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.08) 0%, rgba(255, 44, 31, 0.03) 100%);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Comparaison Cybers vs Success J */
.process-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.comparison-column {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out both;
}

.comparison-column.cybers {
    border: 2px solid rgba(211, 47, 47, 0.2);
}

.comparison-column.success {
    border: 2px solid rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
    animation-delay: 0.1s;
}

.comparison-column h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.comparison-column.cybers h3 {
    color: #d32f2f;
}

.comparison-column.success h3 {
    color: #2e7d32;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comparison-item.red {
    border-bottom: none;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(211, 47, 47, 0.08);
}

.comparison-item.success-bg {
    border-bottom: none;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(76, 175, 80, 0.1);
}

.comparison-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(211, 47, 47, 0.15);
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.comparison-item .icon.success-icon {
    background: rgba(76, 175, 80, 0.15);
    color: #2e7d32;
}

.comparison-item p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.suivi-title {
    text-align: center;
    color: var(--bg-color);
    font-size: 2rem;
    margin: 3rem 0 3rem 0;
    font-weight: 700;
}

.timeline {
    position: relative;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--main-color), rgba(255, 44, 31, 0.3));
}

.timeline-step {
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

.timeline-step:nth-child(2) {
    animation-delay: 0.1s;
}

.timeline-step:nth-child(3) {
    animation-delay: 0.2s;
}

.timeline-step:nth-child(4) {
    animation-delay: 0.3s;
}

.timeline-step:nth-child(5) {
    animation-delay: 0.4s;
}

.timeline-step:nth-child(6) {
    animation-delay: 0.5s;
}

.timeline-step:nth-child(7) {
    animation-delay: 0.6s;
}

.timeline-step:nth-child(odd) {
    flex-direction: row;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b47 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 0 15px rgba(255, 44, 31, 0.1), 0 10px 30px rgba(255, 44, 31, 0.3);
    transition: all 0.4s ease;
}

.timeline-dot:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 20px rgba(255, 44, 31, 0.15), 0 15px 40px rgba(255, 44, 31, 0.4);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    color: var(--text-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: all 0.4s ease;
    border-left: 4px solid var(--main-color);
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 44, 31, 0.2);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--main-color);
}

.timeline-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(2, 3, 7, 0.7);
}

.timeline-time {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 44, 31, 0.1);
    color: var(--main-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Message clé */
.suivi-message {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(255, 44, 31, 0.08) 100%);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
    animation: slideUp 0.8s ease-out 0.7s both;
}

.suivi-message h4 {
    color: #2e7d32;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.suivi-message p {
    color: rgba(2, 3, 7, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 774px) {
    .process-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-column {
        padding: 1.5rem;
    }

    .comparison-column h3 {
        font-size: 1.3rem;
    }

    .comparison-item .icon {
        width: 35px;
        height: 35px;
    }

    .suivi-title {
        font-size: 1.6rem;
        margin: 2rem 0;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-step {
        flex-direction: column !important;
        margin-left: 100px;
        gap: 1.5rem;
    }

    .timeline-dot {
        position: absolute;
        left: -50px;
        top: 0;
    }

    .timeline-content {
        border-left: 4px solid var(--main-color);
    }

    .suivi-message {
        padding: 2rem;
    }

    .suivi-message h4 {
        font-size: 1.3rem;
    }

    .suivi-message p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .comparison-item {
        margin-bottom: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .comparison-item .icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .comparison-item p {
        font-size: 0.85rem;
    }

    .timeline-step {
        margin-left: 70px;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        left: -40px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .suivi-title {
        font-size: 1.4rem;
    }

    .suivi-message {
        padding: 1.5rem;
    }

    .suivi-message h4 {
        font-size: 1.1rem;
    }

    .suivi-message p {
        font-size: 0.9rem;
    }
}

@media (max-width: 370px) {
    .process-comparison {
        gap: 1rem;
    }

    .comparison-column {
        padding: 1rem;
    }

    .comparison-column h3 {
        font-size: 1.1rem;
    }

    .comparison-item {
        gap: 0.8rem;
    }

    .comparison-item p {
        font-size: 0.8rem;
    }

    .timeline-step {
        margin-left: 60px;
    }

    .timeline-dot {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        left: -35px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }
}

/* ===== SECTION PACKS ===== */
.pricing {
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.05) 0%, rgba(255, 44, 31, 0.02) 100%);
}

.packs-subtitle {
    text-align: center;
    color: rgba(2, 3, 7, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.packs-info {
    text-align: center;
    color: #2e7d32;
    font-size: 1rem;
    margin-bottom: 3rem;
    padding: 1.2rem;
    background: rgba(76, 175, 80, 0.08);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.packs-info strong {
    color: #1b5e20;
    font-weight: 700;
}

.packs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pack-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    border: 2px solid transparent;
    animation: scaleIn 0.6s ease-out both;
}

.pack-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pack-card:nth-child(3) {
    animation-delay: 0.4s;
}

.pack-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.pack-card.featured {
    border: 2px solid var(--main-color);
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
    transform: scale(1.05);
}

.pack-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 44, 31, 0.4);
}

.pack-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b47 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(255, 44, 31, 0.3);
}

.pack-header {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 44, 31, 0.1);
    padding-bottom: 1rem;
}

.pack-header h3 {
    font-size: 1.8rem;
    color: var(--main-color);
    margin-bottom: 0.5rem;
}

.pack-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
}

.currency {
    font-size: 1rem;
    font-weight: 600;
}

.pack-description {
    color: rgba(2, 3, 7, 0.6);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pack-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pack-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pack-features li:hover {
    transform: translateX(8px);
}

.pack-features i {
    font-size: 1.3rem;
    min-width: 20px;
}

.pack-features .bx-check {
    color: #4caf50;
}

.pack-features .bx-x {
    color: #ccc;
}

.pack-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 44, 31, 0.1);
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.pack-btn:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 44, 31, 0.3);
}

.pack-btn.featured-btn {
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b47 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 44, 31, 0.3);
}

.pack-btn.featured-btn:hover {
    box-shadow: 0 15px 40px rgba(255, 44, 31, 0.4);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== SECTION À VENIR ===== */
.coming {
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.08) 0%, rgba(255, 44, 31, 0.03) 100%);
}

.coming-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.coming-header .heading {
    color: var(--bg-color);
    font-size: 2.5rem;
}

.coming-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 1rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b47 100%);
    padding: 4rem 2rem !important;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.newsletter-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.newsletter-text strong {
    color: white;
    font-weight: 700;
}

.newsletter-form {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form .email {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: var(--text-color);
}

.newsletter-form .email::placeholder {
    color: rgba(2, 3, 7, 0.5);
}

.newsletter-btn {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.newsletter-btn:hover {
    background: white;
    color: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-style: italic;
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: var(--text-color);
    padding: 4rem 2rem 2rem !important;
    border-top: 2px solid rgba(255, 44, 31, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out both;
}

.footer-section:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.3s;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-footer:hover {
    color: #ff6b47;
}

.logo-footer i {
    font-size: 2rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), #ff6b47);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--main-color);
    transform: translateX(8px);
}

.social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 44, 31, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 44, 31, 0.3);
    border-color: var(--main-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom p:last-child {
    color: var(--main-color);
    font-weight: 600;
}

/* ===== SERVICES SECTION ===== */
.Services {
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.08) 0%, rgba(255, 44, 31, 0.03) 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

.services-header .heading {
    color: var(--bg-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-conatiner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    animation: fadeInUp 0.8s ease-out both;
    display: flex;
    flex-direction: column;
}

.service-box:nth-child(2) {
    animation-delay: 0.1s;
}

.service-box:nth-child(3) {
    animation-delay: 0.2s;
}

.service-box:nth-child(n+4) {
    animation-delay: 0.3s;
}

.service-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-box .box-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-box .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-box:hover .box-img img {
    transform: scale(1.15);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 44, 31, 0.9);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: slideInRight 0.6s ease-out;
}

.box-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-box h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-box:hover h3 {
    color: var(--main-color);
}

.service-description {
    color: rgba(2, 3, 7, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 44, 31, 0.08);
    color: var(--main-color);
    border-radius: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-box:hover .meta-item {
    background: rgba(255, 44, 31, 0.15);
    transform: translateY(-2px);
}

.service-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b47 100%);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 0.95rem;
}

.service-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(255, 44, 31, 0.3);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.blog {
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.08) 0%, rgba(255, 44, 31, 0.03) 100%);
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.blog-header .heading {
    color: var(--bg-color);
    font-size: 2.5rem;
}

.blog-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 1rem;
}

.blog-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.1s both;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    border: 2px solid rgba(255, 44, 31, 0.3);
    background: transparent;
    color: var(--bg-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b47 100%);
    border-color: var(--main-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 44, 31, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 44, 31, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.8s ease-out both;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.blog-card:nth-child(2) {
    animation-delay: 0.1s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.2s;
}

.blog-card:nth-child(n+4) {
    animation-delay: 0.3s;
}

.blog-card:hover {
    transform: translateY(-12px) translateX(0);
    box-shadow: 0 20px 48px rgba(255, 44, 31, 0.15),
                0 0 0 1px rgba(255, 44, 31, 0.2);
    border-color: rgba(255, 44, 31, 0.3);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.1), rgba(255, 107, 71, 0.05));
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95);
}

.blog-card:hover .blog-image img {
    transform: scale(1.12) rotate(0.5deg);
    filter: brightness(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.95), rgba(255, 107, 71, 0.9));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(255, 44, 31, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
}

.blog-content {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.blog-content h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
    line-height: 1.5;
    font-weight: 700;
    transition: color 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover .blog-content h3 {
    color: var(--main-color);
}

.blog-content p {
    color: rgba(2, 3, 7, 0.68);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.3rem;
    flex: 1;
    font-weight: 500;
}

.blog-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(2, 3, 7, 0.45);
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 44, 31, 0.08);
}

.blog-author,
.blog-date,
.blog-time {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.blog-author::before {
    content: '👤';
    margin-right: 0.5rem;
}

.blog-date::before {
    content: '📅';
    margin-right: 0.5rem;
}

.blog-time::before {
    content: '⏱️';
    margin-right: 0.5rem;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b47 100%);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    align-self: flex-start;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.4px;
}

.blog-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.blog-btn:hover::before {
    left: 100%;
}

.blog-btn:hover {
    transform: translateY(-3px) scaleX(1.05);
    box-shadow: 0 12px 32px rgba(255, 44, 31, 0.35);
}

.blog-btn:active {
    transform: translateY(-1px) scaleX(1.02);
}

/* ===== FAQ SECTION ===== */
.faq {
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.05) 0%, rgba(255, 44, 31, 0.02) 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.faq-header .heading {
    color: var(--bg-color);
    font-size: 2.5rem;
}

.faq-subtitle {
    color: rgba(2, 3, 7, 0.8);
    font-size: 1rem;
    margin-top: 1rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out both;
}

.faq-category:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-category:nth-child(3) {
    animation-delay: 0.2s;
}

.faq-category:nth-child(4) {
    animation-delay: 0.3s;
}

.faq-category-title {
    color: var(--bg-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--main-color);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    color: var(--text-color);
    font-weight: 600;
    background: white;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.1) 0%, rgba(255, 44, 31, 0.05) 100%);
    color: var(--main-color);
}

.faq-question:hover {
    background: rgba(255, 44, 31, 0.05);
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--main-color);
    transition: transform 0.3s ease;
    min-width: 25px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question span {
    flex: 1;
    font-size: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 44, 31, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: rgba(2, 3, 7, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer strong {
    color: var(--main-color);
    font-weight: 600;
}

.faq-answer br {
    display: block;
    content: '';
}
@media (max-width: 768px) {
    /* Newsletter responsive */
    .newsletter {
        padding: 3rem 1.5rem !important;
    }

    .newsletter-text h2 {
        font-size: 1.8rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

    .form-group {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Blog responsive */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Services responsive */
    .services-conatiner {
        grid-template-columns: 1fr;
    }

    .service-box .box-img {
        height: 200px;
    }

    .service-box h3 {
        font-size: 1.1rem;
    }

    .box-content {
        padding: 1.5rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    /* FAQ responsive */
    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .faq-question i {
        font-size: 1.2rem;
    }

    .faq-answer p {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* Timeline responsive */
    .timeline::before {
        left: 30px;
    }

    .timeline-step {
        flex-direction: column !important;
        margin-left: 100px;
        gap: 1.5rem;
    }

    .timeline-dot {
        position: absolute;
        left: -50px;
        top: 0;
    }

    .timeline-content {
        border-left: 4px solid var(--main-color);
    }

    /* Packs responsive */
    .pack-card.featured {
        transform: scale(1);
    }

    .pack-card.featured:hover {
        transform: translateY(-15px);
    }

    .packs-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Hero content */
    .hero-content h1 {
        font-size: 2rem;
    }

    /* Process */
    .process-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .timeline-step {
        margin-left: 70px;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        left: -40px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .pack-header h3 {
        font-size: 1.4rem;
    }

    .pack-price {
        font-size: 1.5rem;
    }

    /* Services extra responsive */
    .service-box .box-img {
        height: 180px;
    }

    .service-box h3 {
        font-size: 1rem;
    }

    .box-content {
        padding: 1.2rem;
    }

    .service-meta {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .service-btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
    }
}

/* ===== TRÈS PETITS MOBILES (≤370px) ===== */
@media (max-width: 370px) {
    .service-box .box-img {
        height: 160px;
    }

    .service-box h3 {
        font-size: 0.95rem;
    }

    .box-content {
        padding: 1rem;
    }

    .service-meta {
        font-size: 0.7rem;
    }

    .service-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .blog-card h3 {
        font-size: 1rem;
    }

    .blog-card-meta {
        font-size: 0.7rem;
    }

    .modal-body {
        padding: 1.2rem;
    }

    .modal-body h2 {
        font-size: 1.3rem;
    }

    .modal-body p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .pack-item h3 {
        font-size: 1rem;
    }

    .pack-item p {
        font-size: 0.9rem;
    }
}

/* ===== MODALE ARTICLES ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    z-index: 3000;
    animation: fadeIn 0.3s ease;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid rgba(255, 44, 31, 0.1);
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.05) 0%, transparent 100%);
}

.modal-header h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: rgba(2, 3, 7, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--main-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    color: var(--text-color);
}

.article-title {
    font-size: 1.4rem;
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.article-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input {
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(2, 3, 7, 0.15);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.99);
    color: var(--text-color);
}

.form-input:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(255, 44, 31, 0.1);
    background: white;
}

.form-input::placeholder {
    color: rgba(2, 3, 7, 0.4);
}

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b47 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 44, 31, 0.3);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.form-note {
    text-align: center;
    color: rgba(2, 3, 7, 0.5);
    font-size: 0.85rem;
    margin: 0;
    padding-top: 0.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 680px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
        border-radius: 15px;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.2rem;
    }

    .form-input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===== LES 10 COMMANDEMENTS SECTION ===== */
.commandments {
    background: linear-gradient(135deg, rgba(255, 44, 31, 0.08) 0%, rgba(255, 44, 31, 0.03) 100%);
    padding: 5rem 2rem !important;
}

.commandments-container {
    max-width: 1200px;
    margin: 0 auto;
}

.commandments-container .heading {
    text-align: center;
    font-size: 2.8rem;
    color: var(--bg-color);
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out;
}

.commandments-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

.commandments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.commandment-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease-out both;
    overflow: hidden;
}

.commandment-card:nth-child(n+2) {
    animation-delay: 0.1s;
}

.commandment-card:nth-child(n+3) {
    animation-delay: 0.2s;
}

.commandment-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 44, 31, 0.2);
    border-color: var(--main-color);
}

.commandment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 44, 31, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.commandment-card:hover::before {
    left: 100%;
}

.commandment-number {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 2s infinite;
}

.commandment-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.commandment-card:hover h3 {
    color: var(--main-color);
}

.commandment-card p {
    color: rgba(2, 3, 7, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
}

.commandments-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.commandments-cta p {
    color: rgba(2, 3, 7, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b47 100%);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 44, 31, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 44, 31, 0.4);
}

@media (max-width: 774px) {
    .commandments {
        padding: 3.5rem 1.5rem !important;
    }

    .commandments-container .heading {
        font-size: 2rem;
    }

    .commandments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .commandment-card {
        padding: 1.5rem;
    }

    .commandment-number {
        font-size: 2.2rem;
    }

    .commandment-card h3 {
        font-size: 1.1rem;
    }

    .commandment-card p {
        font-size: 0.9rem;
    }

    .commandments-cta {
        padding: 2rem;
    }

    .commandments-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .commandments-container .heading {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .commandments-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .commandment-card {
        padding: 1.2rem;
    }

    .commandment-number {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .commandment-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .commandment-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 370px) {
    .commandments-container .heading {
        font-size: 1.4rem;
    }

    .commandment-number {
        font-size: 1.8rem;
    }

    .commandment-card {
        padding: 1rem;
    }

    .commandment-card h3 {
        font-size: 0.95rem;
    }

    .commandment-card p {
        font-size: 0.8rem;
    }

    .cta-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
}

/* ===== FORMULAIRE BRIEF SECTION ===== */
.formulaire-brief {
    background: linear-gradient(135deg, #f0f8f5 0%, #fff5f0 100%);
    border: 3px solid #2e7d32;
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.15);
}

.formulaire-brief h4 {
    color: #1b5e20;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.formulaire-brief p {
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.formulaire-brief p strong {
    color: var(--main-color);
    font-weight: 700;
    background: rgba(255, 44, 31, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .formulaire-brief {
        padding: 1.5rem;
        border-radius: 10px;
        border-width: 2px;
    }

    .formulaire-brief h4 {
        font-size: 1.2rem;
    }

    .formulaire-brief p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .formulaire-brief {
        padding: 1.2rem;
        margin-top: 2rem;
    }

    .formulaire-brief h4 {
        font-size: 1.1rem;
    }

    .formulaire-brief p {
        font-size: 0.9rem;
    }
}

@media (max-width: 370px) {
    .formulaire-brief {
        padding: 1rem;
    }

    .formulaire-brief h4 {
        font-size: 1rem;
    }

    .formulaire-brief p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

