/* 

   ServeurTek - style.css

   Style principal du site

*/



/* Variables */

:root {

    --color-blue-dark: #0E4F7F;

    --color-blue-medium: #32A1DA;

    --color-blue-light: #CBE7F6;

    --color-orange: #CF4B28;

    --color-beige: #EAD2AC;

    --color-gold: #E9D05E;

    --gradient-blue: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue-medium) 100%);

    --gradient-orange: linear-gradient(135deg, var(--color-orange) 0%, var(--color-gold) 100%);

    --font-heading: 'Conthrax', sans-serif;

    --font-body: 'Outfit', Arial, sans-serif;

    --spacing-xs: 0.5rem;

    --spacing-sm: 1rem;

    --spacing-md: 2rem;

    --spacing-lg: 4rem;

    --spacing-xl: 6rem;

    --border-radius: 8px;

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease;

}


.grecaptcha-badge {
    z-index: 99999;
}


/* Fonts */



@font-face {

    font-family: 'Conthrax';

    src: url('../fonts/Conthrax-SemiBold.woff2') format('woff2'),

         url('../fonts/Conthrax-SemiBold.woff') format('woff');

    font-weight: 600;

    font-style: normal;

    font-display: swap;

}

@font-face {

    font-family: 'Outfit';

    src: url('../fonts/Outfit-Light.woff2') format('woff2'),

         url('../fonts/Outfit-Light.woff') format('woff'),

         url('../fonts/Outfit-Light.ttf') format('truetype');

    font-weight: 300;

    font-style: normal;

    font-display: swap;

}



/* Base */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: var(--font-body);

    font-size: 16px;

    line-height: 1.6;

    color: #fff;

    overflow-x: hidden;

    background-color: var(--color-blue-dark);

}



.container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 var(--spacing-sm);

    position: relative;

    z-index: 2;

}



img {

    max-width: 100%;

    height: auto;

}



a {

    color: white;

    text-decoration: none;

    transition: var(--transition);

}



a:hover {

    color: var(--color-orange);

}



ul {

    list-style: none;

}



.section {

    padding: var(--spacing-xl) 0;

    position: relative;

}



.section-title {

    font-family: var(--font-heading);

    font-size: 3.5rem;

    margin-bottom: var(--spacing-md);

    text-align: center;

    color: white;

    text-transform: uppercase;

    font-weight: 700;

    line-height: 1.2;

}



.section-subtitle {

    font-size: 1.3rem;

    max-width: 800px;

    margin: 0 auto var(--spacing-lg);

    text-align: center;

    opacity: 0.9;

}



/* Boutons */

.btn {

    display: inline-block;

    padding: 0.8rem 1.8rem;

    border-radius: var(--border-radius);

    font-weight: 500;

    text-align: center;

    transition: var(--transition);

    border: none;

    cursor: pointer;

    font-family: var(--font-body);

    text-transform: uppercase;

    letter-spacing: 1px;

}



.btn-primary {

    background: var(--gradient-blue);

    color: white;

}



.btn-primary:hover {

    background: var(--color-blue-dark);

    transform: translateY(-2px);

    box-shadow: var(--shadow);

    color: white;

}



.btn-secondary {

    background: var(--gradient-orange);

    color: white;

}



.btn-secondary:hover {

    background: var(--color-orange);

    transform: translateY(-2px);

    box-shadow: var(--shadow);

    color: white;

}



.btn-outline {

    background: transparent;

    color: white;

    border: 2px solid white;

}



.btn-outline:hover {

    background: rgba(255,255,255,0.1);

    color: white;

}



/* Header styles */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    background-color: rgba(14, 79, 127, 0.95);

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

    transition: var(--transition);

}



.header-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 1rem 0;

}



.logo img {

    height: 50px;

    width: auto;

}



.nav-list {

    display: flex;

    gap: var(--spacing-md);

}



.nav-link {

    font-weight: 500;

    position: relative;

    padding: 0.5rem 0;

    color: white;

}



.nav-link::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 2px;

    background-color: var(--color-orange);

    transition: var(--transition);

}



.nav-link:hover::after,

.nav-link.active::after {

    width: 100%;

}



.nav-link:hover {

    color: var(--color-orange);

}



.mobile-menu-toggle {

    display: none;

    background: none;

    border: none;

    cursor: pointer;

    padding: 0.5rem;

}



.mobile-menu-toggle span {

    display: block;

    width: 25px;

    height: 3px;

    margin: 5px 0;

    background-color: var(--color-blue-light);

    transition: var(--transition);

}

.mobile-menu .container{

    padding:0;

}

.mobile-menu {

    display: none;

    position: fixed;

    top: 80px;

    right: 0;

    width: 100%;

    height: 0;

    background-color: var(--color-blue-dark);

    overflow: hidden;

    transition: var(--transition);

    z-index: 999;

}



.mobile-menu.active {

    height: calc(100vh - 80px);

    overflow-y: auto;

    width: 63%;

}



.mobile-nav-list {

    padding: 0 0 var(--spacing-md) 0;

}



.mobile-nav-item {

    margin-bottom: 2px;

    background: var(--color-blue-light);

}



.mobile-nav-link {

    display: block;

    padding: var(--spacing-sm);

    font-size: 1.2rem;

    text-align: left;

    color: var(--color-blue-dark);

}



/* Hero Section */

.hero-section {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 120px 0 80px;

    overflow: hidden;

    background: var(--gradient-blue);

}



.hero-section::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');

    background-size: 30px 30px;

    opacity: 0.3;

    z-index: 1;

}



.hero-section .container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    z-index: 2;

}



.hero-content {

    max-width: 600px;

    color: white;

}



.hero-title {

    font-size: 3.3rem;

    line-height: 1.1;

    margin-bottom: var(--spacing-md);

    text-transform: uppercase;

    font-weight: 700;

    font-family: 'Conthrax';

}



.hero-subtitle {

    font-size: 1.5rem;

    margin-bottom: var(--spacing-lg);

    opacity: 0.9;

}



.hero-image {

    position: relative;

    flex: 0 0 40%;

}



.rocket-img {

    max-width: 82%;

    animation: float 15s ease-in-out infinite;

}



@keyframes float {

    0% {

        transform: translateY(0px) rotate(0deg);

    }

    50% {

        transform: translateY(-20px) rotate(2deg);

    }

    100% {

        transform: translateY(0px) rotate(0deg);

    }

}



.wave-divider {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    overflow: hidden;

    line-height: 0;

    z-index: 2;

}



.wave-divider svg {

    position: relative;

    display: block;

    width: calc(100% + 1.3px);

    height: 80px;

}



/* AmÃƒÂ©lioration des cartes de service */

.service-card {

    background-color: white;

    border-radius: 12px;

    padding: 2rem;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    text-align: center;

    transition: all 0.4s ease;

    position: relative;

    height: 100%;

    color: #333;

    overflow: hidden;

    border: none;

}



.service-card:hover {

    transform: translateY(-15px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

}



.service-card::before {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: var(--gradient-blue);

    transform: scaleX(0);

    transform-origin: right center;

    transition: transform 0.5s ease;

}



.service-card:hover::before {

    transform: scaleX(1);

    transform-origin: left center;

}



.service-icon {

    /* width: 80px; */

    /* height: 80px; */

    display: flex;

    justify-content: center;

    align-items: center;

    margin: 0 auto 1.5rem;

    background-color: transparent;

    border-radius: 50%;

    transition: all 0.3s ease;

}





.service-title {

    font-size: 1.5rem;

    margin-bottom: 1rem;

    color: var(--color-blue-dark);

    font-weight: 600;

    position: relative;

}



.service-description {

    color: var(--color-blue-light);

    line-height: 1.7;

}

.services-slider .service-description {

    color: #333;

    line-height: 1.7;

}

/* Configuration du slider de services */

.services-slider {

    overflow: hidden;

    padding: 20px 0 60px;

    position: relative;

}



.services-slider .swiper-slide {

    height: auto;

    padding: 1rem;

}



.services-slider .swiper-wrapper {

    margin-bottom: 60px;

}



.services-slider .swiper-pagination-bullet {

    background: var(--color-blue-medium);

    opacity: 0.5;

}



.services-slider .swiper-pagination-bullet-active {

    opacity: 1;

    background: var(--color-blue-light);

}

.swiper-pagination-bullet-active{

    background: var(--color-blue-light) !important;

}

/* Offers Section */

.offers-section {

    position: relative;

    background: linear-gradient(135deg, var(--color-blue-dark) 0%, #1a65a3 100%);

    color: white;

    padding: var(--spacing-xl) 0;

    overflow: hidden;

}



.offers-section::before {

    content: '';

    position: absolute;

    top: 0;

    right: 0;

    width: 50%;

    height: 100%;

    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M67,-79.1C85.9,-67.2,100.2,-45.6,108.5,-20.9C116.9,3.7,119.4,31.3,106.4,48.8C93.4,66.3,64.9,73.5,38.1,79.2C11.3,84.9,-13.9,89,-35.8,81.2C-57.7,73.4,-76.4,53.8,-87.8,29.1C-99.3,4.4,-103.5,-25.3,-92.5,-46.9C-81.6,-68.4,-55.5,-81.8,-30.6,-91.9C-5.6,-102,19.1,-108.7,40.5,-98.3C61.8,-87.9,48.1,-91,67,-79.1Z" fill="rgba(207, 75, 40, 0.1)" transform="translate(100 100)" /></svg>');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 0.5;

    z-index: 0;

}



.offers-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: var(--spacing-md);

    margin-bottom: var(--spacing-lg);

    position: relative;

    z-index: 1;

}



.offer-card {

    background-color: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);

    border-radius: var(--border-radius);

    overflow: hidden;

    transition: var(--transition);

    position: relative;

    border: 1px solid rgba(255, 255, 255, 0.1);

}



.offer-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

}



.offer-card.featured {

    transform: scale(1.05);

    border: 2px solid var(--color-gold);

    background-color: rgba(255, 255, 255, 0.15);

    z-index: 2;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);

}



.offer-card.featured:hover {

    transform: scale(1.05) translateY(-10px);

}



.offer-badge {

    position: absolute;

    top: 0;

    right: 0;

    background: var(--gradient-orange);

    color: white;

    padding: 5px 15px;

    font-size: 0.9rem;

    border-bottom-left-radius: var(--border-radius);

    font-weight: 600;

    z-index: 1;

}



.offer-header {

    padding: var(--spacing-md);

    background: rgba(0, 0, 0, 0.2);

    color: white;

    text-align: center;

}



.offer-title {

    font-size: 1.8rem;

    margin-bottom: var(--spacing-xs);

    font-weight: 600;

}



.offer-price {

    font-size: 1.2rem;

}



.offer-price {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 0.75rem;

}



.offer-price .price-oneshot,

.offer-price .price-monthly,

.offer-price .price-note {

    text-align: center;

}



.offer-price .price-label {

    display: block;

    font-size: 0.9rem;

    color: rgba(255, 255, 255, 0.85);

    margin-top: 4px;

}



.offer-price .price-note {

    font-size: 0.85rem;

    color: rgba(255, 255, 255, 0.75);

    line-height: 1.4;

}



.offer-price .price-divider {

    position: relative;

    font-weight: 600;

    color: var(--color-gold);

    font-size: 0.9rem;

}



.offer-price .price-divider::before,

.offer-price .price-divider::after {

    content: '';

    display: inline-block;

    width: 32px;

    height: 1px;

    background: rgba(255, 255, 255, 0.3);

    margin: 0 8px;

    vertical-align: middle;

}



.offer-price .price-monthly .price {

    color: #fff;

}



.offer-price .price-monthly .price-label {

    color: rgba(255, 255, 255, 0.9);

}



.price {

    font-size: 1.5rem;

    font-weight: 700;

    color: var(--color-gold);

}



.offer-content {

    padding: var(--spacing-md);

}



.offer-description {

    text-align: center;

    margin-bottom: var(--spacing-sm);

    padding-bottom: var(--spacing-sm);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}



.offer-features {

    margin-bottom: var(--spacing-md);

}



.offer-features li {

    padding: var(--spacing-xs) 0;

    position: relative;

    padding-left: 30px;

}



.offer-features li:before {

    content: "✓";

    color: var(--color-gold);

    position: absolute;

    left: 0;

    font-weight: bold;

    font-size: 1.2rem;

}



.offer-action {

    text-align: center;

}



/* Nouvelle timeline amÃƒÂ©liorÃƒÂ©e */

.steps-container {

    position: relative;

    max-width: 800px;

    margin: 0 auto;

    padding: 2rem 0;

}



.timeline-line {

    position: absolute;

    left: 50%;

    top: 50px;

    transform: translateX(-50%);

    width: 2px;

    height: 87%;

    background: linear-gradient(to bottom, rgba(50, 161, 218, 0.2), var(--color-blue-medium));

    z-index: 0;

}



.step-item {

    position: relative;

    display: flex;

    align-items: center;

    margin-bottom: 4rem;

    z-index: 1;

}



.step-item:last-child {

    margin-bottom: 0;

}



.step-number {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: var(--gradient-blue);

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 1.8rem;

    font-weight: 700;

    box-shadow: 0 5px 15px rgba(14, 79, 127, 0.3);

    position: relative;

    z-index: 3;

    flex-shrink: 0;

}



.step-connector {

    flex: 1;

    height: 2px;

    background: var(--color-blue-light);

    position: relative;

}



.step-content {

    background-color: white;

    border-radius: 12px;

    padding: 2rem;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);

    max-width: 500px;

    flex: 2;

}



.step-title {

    font-size: 1.4rem;

    margin-bottom: 0.8rem;

    color: var(--color-blue-dark);

    font-weight: 600;

}



.step-description {

    color: #666;

    line-height: 1.7;

}



/* Style pour les ÃƒÂ©tapes paires/impaires pour crÃƒÂ©er un zigzag */

.step-item:nth-child(odd) {

    flex-direction: row;

}



.step-item:nth-child(even) {

    flex-direction: row-reverse;

}



/* Style pour le responsive */

@media (max-width: 768px) {

    .step-item, .step-item:nth-child(even) {

        flex-direction: column;

        text-align: center;

        gap: 1.5rem;

    }

    

    .step-connector {

        display: none;

    }

    

    .step-content {

        max-width: 100%;

    }

    

    .timeline-line {

        left: 50%;

    }

}



/* Testimonials Section */

.testimonials-section.testi-page-detail {

    position: relative;

    padding: var(--spacing-xl) 0;

    background: linear-gradient(167deg, var(--color-blue-dark) 53%, var(--color-blue-medium) 100%);

}



.testimonials-section.testi-page-detail::before {

    content: '';

    position: absolute;

    top: 8%;

    left: 17%;

    width: 63%;

    height: 96%;

    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M41.3,-71.2C56.5,-64.7,73.9,-58.5,83.1,-45.9C92.3,-33.3,93.2,-14.1,91.6,4.8C89.9,23.7,85.8,42.3,74.7,55.5C63.6,68.7,45.5,76.5,27.6,80.1C9.7,83.7,-8,83.2,-22.1,76.4C-36.2,69.7,-46.6,56.6,-57.7,43.6C-68.8,30.5,-80.6,17.4,-84,2.5C-87.5,-12.5,-82.6,-27.4,-73.2,-38.9C-63.7,-50.4,-49.7,-58.5,-36.2,-66.3C-22.8,-74.1,-9.9,-81.7,3.1,-87C16.1,-92.3,26.1,-77.8,41.3,-71.2Z" fill="rgba(203, 231, 246, 0.1)" transform="translate(100 100)" /></svg>');

    background-size: 100% 100%;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 0.5;

    z-index: 0;

}

.testimonials-section {

    position: relative;

    padding: var(--spacing-xl) 0;

    background: linear-gradient(135deg, var(--color-blue-medium) 0%, var(--color-blue-dark) 100%);

}







.testimonials-section::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M41.3,-71.2C56.5,-64.7,73.9,-58.5,83.1,-45.9C92.3,-33.3,93.2,-14.1,91.6,4.8C89.9,23.7,85.8,42.3,74.7,55.5C63.6,68.7,45.5,76.5,27.6,80.1C9.7,83.7,-8,83.2,-22.1,76.4C-36.2,69.7,-46.6,56.6,-57.7,43.6C-68.8,30.5,-80.6,17.4,-84,2.5C-87.5,-12.5,-82.6,-27.4,-73.2,-38.9C-63.7,-50.4,-49.7,-58.5,-36.2,-66.3C-22.8,-74.1,-9.9,-81.7,3.1,-87C16.1,-92.3,26.1,-77.8,41.3,-71.2Z" fill="rgba(203, 231, 246, 0.1)" transform="translate(100 100)" /></svg>');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 0.5;

    z-index: 0;

}



.testimonials-slider {

    overflow: hidden;

    padding: 20px 0 60px;

    position: relative;

    z-index: 1;

}

.testimonials-slider .swiper-wrapper{

    margin-bottom: 60px

}



.testimonials-slider .swiper-button-next, .testimonials-slider .swiper-button-prev{

    display: none;

}





.testimonial-card {

    background-color: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);

    border-radius: var(--border-radius);

    padding: var(--spacing-md);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    height: auto;

    border: 1px solid rgba(255, 255, 255, 0.1);

    transition: transform 0.3s ease;

}



.testimonial-card:hover {

    transform: translateY(-5px);

}



.testimonial-quote {

    margin-bottom: var(--spacing-sm);

    opacity: 0.7;

}



.testimonial-text {

    font-style: italic;

    margin-bottom: var(--spacing-md);

    font-size: 1.1rem;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

    max-height: 3.5em;

    line-height: 1.4em;

}



.testimonial-author {

    display: flex;

    flex-direction: column;

}



.author-name {

    font-weight: 600;

    color: var(--color-gold);

}



.author-title {

    font-size: 0.9rem;

    opacity: 0.8;

}



.swiper-pagination-bullet {

    background: white;

    opacity: 0.5;

}



.swiper-pagination-bullet-active {

    opacity: 1;

    background: var(--color-gold);

}



.swiper-button-next,

.swiper-button-prev {

    color: white;

}



/* Contact CTA Section */

.contact-cta-section {

    background-color: var(--color-blue-light);

    color: var(--color-blue-dark);

    position: relative;

    overflow: hidden;

}



.contact-cta-section::before {

    content: '';

    position: absolute;

    top: -10%;

    right: -10%;

    width: 60%;

    height: 200%;

    background: var(--color-blue-medium);

    opacity: 0.1;

    transform: rotate(-20deg);

    z-index: 0;

}



.cta-content {

    position: relative;

    z-index: 1;

    text-align: center;

    margin: 0 auto;

}



.cta-title {

    font-size: 2.5rem;

    margin-bottom: var(--spacing-sm);

    color: var(--color-blue-dark);

    font-weight: 700;

}



.cta-subtitle {

    font-size: 1.2rem;

    margin-bottom: var(--spacing-md);

    color: var(--color-blue-dark);

    opacity: 0.8;

}



.btn-lg {

    padding: 1rem 2rem;

    font-size: 1.1rem;

}



/* Footer */

.site-footer {

    background: var(--gradient-blue);

    color: white;

    padding: var(--spacing-lg) 0 var(--spacing-md);

    position: relative;

}



.footer-gradient {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: var(--gradient-orange);

}



.footer-top {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: var(--spacing-lg);

    margin-bottom: var(--spacing-lg);

}



.footer-logo img {

    margin-bottom: var(--spacing-sm);

}



.tagline {

    font-size: 1rem;

    opacity: 0.9;

}



.footer-contact h3,

.footer-navigation h3,

.footer-social h3 {

    font-size: 1.3rem;

    margin-bottom: var(--spacing-sm);

    position: relative;

    padding-bottom: 10px;

}



.footer-contact h3::after,

.footer-navigation h3::after,

.footer-social h3::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 50px;

    height: 3px;

    background: var(--color-orange);

}



.contact-list li,

.footer-nav li,

.social-links li {

    margin-bottom: var(--spacing-xs);

}



.footer-nav a,

.contact-list a,

.social-links a {

    color: white;

    opacity: 0.8;

    transition: var(--transition);

}



.footer-nav a:hover,

.contact-list a:hover,

.social-links a:hover {

    opacity: 1;

    color: var(--color-gold);

    transform: translateX(5px);

}



.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    padding-top: var(--spacing-md);

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: var(--spacing-sm);

}



.copyright {

    font-size: 0.9rem;

    opacity: 0.8;

}



.legal-links {

    display: flex;

    gap: var(--spacing-md);

}



.legal-links a {

    color: white;

    opacity: 0.8;

    font-size: 0.9rem;

}



.legal-links a:hover {

    opacity: 1;

    color: var(--color-gold);

}



/* Page Banner */

.page-banner {

    position: relative;

    padding: 120px 0 120px;

    overflow: hidden;

    background: var(--gradient-blue);

}



.banner-gradient {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: 0;

}



.banner-content {

    max-width: 800px;

    margin: 0 auto;

    text-align: center;

    color: white;

    position: relative;

    z-index: 1;

}



.page-title {

    font-size: 3rem;

    margin-bottom: var(--spacing-md);

    font-weight: 700;

    text-transform: uppercase;

}



.page-subtitle {

    font-size: 1.3rem;

    opacity: 0.9;

}



/* Form Styles */

.form-group {

    margin-bottom: 5px;

}



.form-group label {

    display: block;

    margin-bottom: var(--spacing-xs);

    font-weight: 500;

}



.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    padding: 12px;

    border: 1px solid #ddd;

    border-radius: var(--border-radius);

    font-family: var(--font-body);

    font-size: 1rem;

    transition: var(--transition);

}



.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

    outline: none;

    border-color: var(--color-blue-medium);

    box-shadow: 0 0 0 2px rgba(50, 161, 218, 0.2);

}



.form-actions {

    margin-top: var(--spacing-lg);

}



.invalid {

    border-color: #f44336 !important;

}



/* Alerts */

.alert {

    padding: var(--spacing-md);

    border-radius: var(--border-radius);

    margin-bottom: var(--spacing-lg);

}



.alert-success {

    background-color: rgba(76, 175, 80, 0.1);

    border: 1px solid #4CAF50;

    color: #2E7D32;

}



.alert-error {

    background-color: rgba(244, 67, 54, 0.1);

    border: 1px solid #F44336;

    color: #C62828;

}



/* FAQ Style */

.faq-wrapper {

    max-width: 800px;

    margin: 0 auto;

}



.faq-item {

    margin-bottom: var(--spacing-sm);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: var(--border-radius);

    overflow: hidden;

    background-color: rgba(255, 255, 255, 0.05);

}



.faq-question {

    padding: var(--spacing-md);

    font-weight: 600;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    transition: var(--transition);

}



.faq-toggle {

    font-size: 1.5rem;

    transition: var(--transition);

}



.faq-answer {

    padding: 0 var(--spacing-md);

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease, padding 0.3s ease;

}



.faq-item.active .faq-question {

    background-color: rgba(255, 255, 255, 0.1);

}



.faq-item.active .faq-answer {

    padding: 0 var(--spacing-md) var(--spacing-md);

    max-height: 500px;

}



.faq-item.active .faq-toggle {

    transform: rotate(45deg);

}



/* Contact page */

.contact-wrapper {

    display: grid;

    grid-template-columns: 3fr 2fr;

    gap: var(--spacing-lg);

}



.contact-form {

    background-color: rgba(255, 255, 255, 0.1);

    border-radius: var(--border-radius);

    padding: var(--spacing-lg);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.1);

}



.contact-info {

    background-color: rgba(0, 0, 0, 0.2);

    border-radius: var(--border-radius);

    padding: var(--spacing-lg);

    border: 1px solid rgba(255, 255, 255, 0.05);

}



.info-item {

    display: flex;

    margin-bottom: var(--spacing-md);

    align-items: flex-start;

}



.info-icon {

    margin-right: var(--spacing-sm);

    flex: 0 0 24px;

}



.info-content h3 {

    font-size: 1.2rem;

    margin-bottom: var(--spacing-xs);

    color: var(--color-gold);

}



.social-links {

    display: flex;

    gap: var(--spacing-sm);

    flex-wrap: wrap;

}



.social-links a {

    display: inline-block;

    padding: 8px 15px;

    background-color: rgba(255, 255, 255, 0.1);

    color: white;

    border-radius: var(--border-radius);

    font-size: 0.9rem;

    transition: var(--transition);

}



.social-links a:hover {

    background-color: var(--color-orange);

    color: white;

    transform: translateY(-3px);

}



/* Responsive */

@media (max-width: 992px) {

    .testimonials-cta, .offers-cta, .services-cta {
text-align: center;
    }

    .main-nav {

        display: none;

    }

    

    .mobile-menu-toggle {

        display: block;

        border: 1px solid var(--color-blue-light);

    }

    

    .mobile-menu {

        display: block;

    }

    

    .header-cta {

        display: none;

    }

    

    .section-title {

        font-size: 2.8rem;

    }

    

    .hero-title {

        font-size: 3.5rem;

    }

    

    .hero-section .container {

        flex-direction: column;

        text-align: center;

    }

    

    .hero-content {

        margin-bottom: var(--spacing-lg);

    }

    

    .contact-cta-section .container {

        flex-direction: column;

        text-align: center;

    }

    

    .steps-timeline {

        left: 60px;

    }

    

    .step-item, .step-item:nth-child(odd) {

        flex-direction: row;

    }

    

    .step-content {

        max-width: calc(100% - 100px);

    }

    

    .contact-wrapper {

        grid-template-columns: 1fr;

    }

    

    .contact-info {

        order: -1;

    }

}



@media (max-width: 768px) {

    .hero-title {

        font-size: 3rem;

    }

    

    .hero-subtitle {

        font-size: 1.2rem;

    }

    

    .section-title {

        font-size: 2.5rem;

    }

    

    .footer-bottom {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }

    

    .legal-links {

        justify-content: center;

    }

    

    .page-title {

        font-size: 2.5rem;

    }

}



@media (max-width: 576px) {

    .hero-section {

        padding: 100px 0 60px;

    }

    

    .hero-title {

        font-size: 2.5rem;

    }

    

    .section-title {

        font-size: 2rem;

    }

    

    .offer-card.featured {

        transform: none;

    }

    

    .offer-card.featured:hover {

        transform: translateY(-10px);

    }

    

    .page-title {

        font-size: 2rem;

    }

}



/* Correction pour le wave-divider */

.wave-divider {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    overflow: hidden;

    line-height: 0;

    z-index: 1;

    margin: 0;

    padding: 0;

    overflow: hidden;

}



.wave-divider svg {

    position: relative;

    display: block;

    width: 100%;

    height: auto;

    min-width: 100%;

    transform: translateX(0);

}



/* Assurez-vous que la section parente a un position: relative */

.hero-section {

    position: relative;

    overflow: hidden;

    /* autres styles... */

}





.icon-style img {

    width: 4rem;

    height: 4rem;

    object-fit: contain;

}



.icon-style {

    width: 8rem;

    height: 8rem;

    background-image: linear-gradient(315deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15));

    border-top: 2px solid rgba(255, 255, 255, 0.5);

    border-left: 2px solid rgba(255, 255, 255, 0.5);

    border-radius: 100%;

    justify-content: center;

    align-items: center;

    margin: auto;

    margin-bottom: 1.5rem;

    padding: 1rem;

    display: flex;

}



.services-detail .icon-style img {

    width: 3rem;

    height: 3rem;

    object-fit: contain;

}



.services-detail .icon-style {

    width: 6rem;

    height: 6rem;

    background-image: linear-gradient(315deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15));

    border-top: 2px solid rgba(255, 255, 255, 0.5);

    border-left: 2px solid rgba(255, 255, 255, 0.5);

    border-radius: 100%;

    justify-content: center;

    align-items: center;

    margin: 0 2em 0 0em;

    margin-bottom: 1.5rem;

    padding: 1rem;

    display: flex;

}



.performance-icon .icon-style img {

    width: 3rem;

    height: 3rem;

    object-fit: contain;

}



.performance-icon .icon-style {

    width: 6rem;

    height: 6rem;

    background-image: linear-gradient(315deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15));

    border-top: 2px solid rgba(255, 255, 255, 0.5);

    border-left: 2px solid rgba(255, 255, 255, 0.5);

    border-radius: 100%;

    justify-content: center;

    align-items: center;

    margin: auto;

    margin-bottom: 1.5rem;

    padding: 1rem;

    display: flex;

}



.service-icon .icon-style img {

    width: 3rem;

    height: 3rem;

    object-fit: contain;

}



.service-icon .icon-style {

    width: 7rem;

    height: 7rem;

    background-image: linear-gradient(315deg, rgb(64 71 255 / 30%), #1466a100);

    border-top: 3px solid rgb(3 0 255 / 50%);

    border-left: 3px solid rgb(3 0 255 / 50%);

    border-radius: 100%;

    justify-content: center;

    align-items: center;

    margin: auto;

    margin-bottom: 0;

    padding: 1rem;

    display: flex;

}



/* Particules d'arriÃ¨re-plan */

.particles {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: 3;

    pointer-events: none;

}



.particle {

    position: absolute;

    background-color: rgb(255 255 255); 

    border-radius: 50%;

    opacity: 0.15;

    animation: float 20s infinite ease-in-out;

}



@keyframes float {

    0%, 100% {

        transform: translateY(0) translateX(0);

    }

    25% {

        transform: translateY(-20px) translateX(10px);

    }

    50% {

        transform: translateY(-10px) translateX(-15px);

    }

    75% {

        transform: translateY(15px) translateX(5px);

    }

}





.hero-section .container {

    position: relative;

    z-index: 2;

}



.coffee-cup {

    background: white;

    width: 27px;

    height: 20px;

    border-radius: 0px 0px 13px 13px;

    position: relative;

    opacity: 0.5;

    display: inline-block;

    margin-left: 10px;

}



.coffee-cup::after {

    content: "";

    border: 2px solid white;

    position: absolute;

    top: 2px;

    right: -8px;

    width: 10px;

    height: 9px;

    border-radius: 0px 8px 10px 0px;

    transform: rotate(-7deg) skewY(6deg);

}



.coffee-cup::before {

    content: "";

    width: 35px;

    height: 0px;

    position: absolute;

    bottom: -6px;

    left: 50%;

    transform: translateX(-49%);

    border-left: 4px solid transparent;

    border-right: 4px solid transparent;

    border-top: 4px solid white;

}



.coffee-cup-smoke {

    position: absolute;

    top: -14px;

    left: 49%;

    margin-left: 2px;

    animation: 1.8s ease 0s infinite normal none running smokeAnim;

    zoom: 1.5; }



.coffee-cup-smoke::after {

    content: "";

    width: 6px;

    height: 7px;

    border-left: 2px solid white;

    position: absolute;

    top: -6px;

    transform: translateX(-49%);

    border-radius: 50%;

}



.coffee-cup-smoke::before {

    content: "";

    width: 6px;

    height: 7px;

    border-right: 2px solid white;

    position: absolute;

    left: -4px;

    transform: translateX(-49%);

    border-radius: 50%;

}



.coffee-cup-smoke:nth-child(2) {

    left: 25%;

    zoom: 1; }



.coffee-cup-smoke:nth-child(3) {

    left: 75%;

    zoom: 1; }



@-webkit-keyframes smokeAnim {

    0% {

        top: -2px;

        opacity: 0;

    }



    50% {

        opacity: 1;

    }



    100% {

        top: -20px;

        opacity: 0;

    }

}



@keyframes smokeAnim {

    0% {

        top: -2px;

        opacity: 0;

    }



    50% {

        opacity: 1;

    }



    100% {

        top: -20px;

        opacity: 0;

    }

}