/* Variables globales */
:root {
    --primary-color: #2A2B2E;
    --secondary-color: #4A90E2;
    --accent-color: #ff6b6b;
    --text-color: #2C3E50;
    --light-bg: #F8F9FA;
    --white: #ffffff;
    --max-width: 1400px;
    --gradient-primary: linear-gradient(135deg, #2A2B2E 0%, #4A4B4F 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
    --gradient-hero: linear-gradient(135deg, rgba(42, 43, 46, 0.95), rgba(74, 144, 226, 0.85));
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease-in-out;
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-bg);
}

.black{
    color:#000;
}

/* Bandeau promo */
.promo-banner {    
    background: var(--gradient-accent);
    color: black;
    background-size: 200% 200%;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    position: fixed;
    top: 0;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    left: 0;
    width: 100%;
    animation: gradientMove 8s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.promo-banner p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.promo-banner-tel {
    display: none;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.9;
    white-space: nowrap;
}

.promo-cta {
    background: var(--white);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.promo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
    z-index: 1;
}

.promo-cta:hover::before {
    right: 150%;
}

.promo-cta * {
    position: relative;
    z-index: 2;
}

.promo-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}


@keyframes shine {
    to { left: 100%; }
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

.hero-content {
    max-width: var(--max-width);
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content .logo {
    max-width: 65%;
    margin: auto;
}

.hero-content .logo img {
    max-width: 100%;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Styles généraux pour les titres de section */
section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

/* Section Destinations Populaires */
.popular-destinations {
    padding: 4rem 0;
    background: var(--light-bg);
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.destinations-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    margin: 0;
    width: 100%;
    padding: 0 3rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    width: 100%;
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    min-width: 300px;
    margin: 0 15px;
    box-shadow: var(--card-shadow);
}

.destination-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
    z-index: 1;
}

.destination-card:hover::before {
    right: 150%;
}

.destination-card * {
    position: relative;
    z-index: 2;
}

.destination-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover img {
    filter: brightness(1.1) saturate(1.2);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    z-index: 2;
}

.destination-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.destination-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.destination-cta {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.destination-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
}

.destination-card:hover .destination-cta::before {
    right: 150%;
}

.destination-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
    background: #ff8383;
}

.carousel-button {
    position: absolute;
    top: 22px;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    z-index: 2;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.carousel-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
}

.carousel-button:hover::before {
    right: 150%;
}

.carousel-button * {
    position: relative;
    z-index: 2;
}

.carousel-button:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.carousel-button.prev {
    left: 10px;
    position: absolute;
    top: 50%;
}

.carousel-button.next {
    right: 10px;
    position: absolute;
    top: 50%;
}

@media (max-width: 768px) {
    .destination-card {
        width: 300px;
    }
}

/* Destinations Carousel Styles */
.destinations-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-content: center;
    align-items: center;
    position: relative;
}

.destinations-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.destination-card {
    flex: 0 0 auto;
    width: 320px;
    max-width: 90vw;
    position: relative;
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    text-align: center;
}

.destination-content h3 {
    margin: 0 auto 0.5rem;
    font-size: 24px;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .destination-card {
        width: 300px;
    }
}

/* Steps Section */
.how-it-works {
    padding: 8rem 1rem;
    text-align: center;
    position: relative!important;
}


.how-it-works::before {
    content: '';
    position: absolute;
    top: 0px;
    z-index: -1;
    left: 0;
    right: 0;
    height: 620px;
    background: linear-gradient(354deg, var(--primary-color) 30%, #4A90E2);
    transform: skewY(4deg);
    transform-origin: top left;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    z-index: 5;
}

.step::before {
    content: attr(data-number);
    position: absolute;
    font-size: 25rem;
    font-weight: 900;
    color: rgba(74, 144, 226, 0.13);
    top: 50%;
    right: 0;
    transform: translate(17%, -50%);
    z-index: -1;
}

.steps .step-icon {
    font-size: 6rem;
    position: relative;
    top: 0;
    left: 0;
    color: var(--gradient-accent);
    opacity: 1;
}

.step:hover .step-icon {
    transform: scale(1.1);
    color: var(--accent-color);
    rotate: -10deg;
}

.step h3 {
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.step p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .steps {
        grid-template-columns: 1fr;
    }
    
    .step::before {
        font-size: 20rem;
    }

    .step-icon {
        font-size: 2.5rem;
    }
}

/* Prix */
.pricing {
    padding: 0rem 2rem 5rem;
    background: linear-gradient(181deg, #FFF0 0%, #bcd3e9c4 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -100%;
    left: -50%;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pricing h2 {
    margin-bottom: 4rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.price-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.price-badge {
    position: absolute;
    top: 2.5rem;
    right: -4rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price {
    margin: 2rem 0;
    position: relative;
    padding: 2rem 0;
}

.price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
    display: block;
    margin-bottom: 0.5rem;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin: 1rem 0;
    display: block;
}

.save-label {
    display: inline-block;
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    text-align: left;
}

.features li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features li:last-child {
    border-bottom: none;
}

.features li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    background: rgba(74, 144, 226, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.price-card.agency {
    background: linear-gradient(135deg, var(--primary-color), #4A90E2);
    color: var(--white);
}

.price-card.agency .features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-card.agency .features li i {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.price-card .cta-button {
    margin-top: auto;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.price-card .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
}

.price-card .cta-button:hover::before {
    right: 150%;
}

.price-card .cta-button * {
    position: relative;
    z-index: 2;
}

.price-card.agency .cta-button {
    background: var(--white);
    color: var(--primary-color);
}

.price-card.agency .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pricing {
        padding: 6rem 1rem;
    }

    .pricing-grid {
        gap: 2rem;
    }

    .price-card {
        padding: 2rem 1.5rem;
    }

    .features li {
        font-size: 1rem;
    }
}

/* Newsletter Section */
.newsletter {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6rem 1rem;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

/**
 * Styles pour les messages de newsletter
 */

 .newsletter-message {
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

.newsletter-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


.btn-subscribe {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
}

.btn-subscribe:hover::before {
    right: 150%;
}

.btn-subscribe * {
    position: relative;
    z-index: 2;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 6rem 1rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 30%;
    height: 1px;
    margin: auto;
    background: var(--accent-color);
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
    color: var(--accent-color);
    transform: translateX(5px);
}

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

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

.social-links a:hover {
    color: white;
    background: var(--accent-color);
    transform: translateY(-5px);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: rgba(255,255,255,0.5);
}

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

/* Boutons et éléments interactifs */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
}

.cta-button:hover::before {
    right: 150%;
}

.cta-button * {
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.animate-pulse {
    animation: pulse 2s infinite;
}

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

/* Quote Section */
.quote {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '"';
    position: absolute;
    font-size: 20rem;
    opacity: 0.1;
    top: -5rem;
    left: -2rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.2);
}

.quote blockquote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.quote cite {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
}

/* Service Intro Section */
.service-intro {
    padding: 6rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.service-intro h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-intro p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.service-intro .container {
    position: relative;
    z-index: 2;
}

.service-outils {
    padding: 11rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
}

.service-outils .mega-title {
    font-size: 15rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
    text-transform: uppercase;
    height: fit-content;
}

/* Animations pour la section service-outils */
.service-outils .mega-title {
    color: #808080;
    transition: color 0.6s ease-in-out;
    font-size: 15rem;
    font-weight: 900;
    opacity: 0.15;
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 0;
    text-transform: uppercase;
    color: var(--text-color);
    line-height: 1;
    pointer-events: none;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}

.service-outils .mega-title.animate-title {
    color: #ff6b6b;
}

.service-outils .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.service-outils .service-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-outils .service-item:hover {
    transform: translateY(-5px);
}

.service-outils .icon {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.service-outils h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
}

.service-outils p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    color: var(--text-color);
}

/* Media Queries pour service-outils */
@media screen and (max-width: 992px) {
    .service-outils .mega-title {
        font-size: 15rem;
    }

    .services-grid {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .service-outils .mega-title {
        font-size: 10rem;
    }

    .service-outils .service-item {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .service-outils {
        padding: 2rem 0.8rem;
    }

    .service-outils .mega-title {
        font-size: 7rem;
    }

    .service-outils .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-outils .service-item {
        padding: 1.2rem;
    }

    .service-outils .icon {
        font-size: clamp(1.8rem, 3.5vw, 2.2rem);
        margin-bottom: 1rem;
    }
}



@media screen and (max-width: 768px) {    
    .service-outils .mega-title {
        font-size: 12rem;
    }
}

@media screen and (max-width: 480px) {    
    .service-outils .mega-title {
        font-size: 10rem;
    }
}

.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.partner-logo {
    flex: 0 1 150px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards, float 3s ease-in-out infinite;
}

.partner-logo:nth-child(1) { 
    animation-delay: 0.1s, 0s;
}
.partner-logo:nth-child(2) { 
    animation-delay: 0.3s, 0.6s;
}
.partner-logo:nth-child(3) { 
    animation-delay: 0.5s, 1.2s;
}
.partner-logo:nth-child(4) { 
    animation-delay: 0.7s, 1.8s;
}
.partner-logo:nth-child(5) { 
    animation-delay: 0.9s, 2.4s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-logo img {
    filter: grayscale(100%);
    transition: all 0.5s ease;
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    transform: translateY(0);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
}

.partner-logo img {
    width: 80px;
    height: auto;
    border-radius: 1.3rem;
    object-fit: contain;
    border: 1px solid #eee;
    box-shadow: #CCC 0px 0px 20px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: row;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    top: -50px;
    text-align: center;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    height: 530px;
    background: linear-gradient(174deg, var(--primary-color) 30%, #4A90E2);
    transform: skewY(-4deg);
    transform-origin: top left;
}

.testimonials h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: var(--max-width);
    padding: 0 2rem;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 1rem;
    }

    .testimonial {
        flex: 0 0 calc(50% - 0.75rem); /* 2 cards avec gap de 1.5rem */
        scroll-snap-align: start;
    }

    .testimonials-nav {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .testimonial-btn {
        background: var(--white);
        border: none;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: var(--card-shadow);
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-btn:hover {
        background: var(--secondary-color);
        color: var(--white);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        gap: 1rem;
    }

    .testimonial {
        flex: 0 0 100%; /* 1 card */
    }
}

@media (min-width: 1201px) {
    .testimonials-nav {
        display: none;
    }
}

.testimonial {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    margin-top: 3rem;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: -60px auto 1rem;
    border: 4px solid var(--white);
    box-shadow: var(--card-shadow);
    object-fit: cover;
}

.testimonial .stars {
    color: #FFD700;
    margin: 1rem 0;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 1rem 0;
    font-style: italic;
    line-height: 1.6;
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-top: 1rem;
}

/* B2B Section */
.b2b-section {
    position: relative;
    padding: 8rem 2rem;
    color: var(--white);
    background-color: var(--primary-color);
    overflow: hidden;
    text-align: center;
}

.b2b-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(42, 43, 46, 0.92), rgba(42, 43, 46, 0.92)), 
                      url('../images/office-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.b2b-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.b2b-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, #fff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.b2b-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.b2b-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.b2b-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.b2b-feature::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
}

.b2b-feature:hover::before {
    right: 150%;
}

.b2b-feature * {
    position: relative;
    z-index: 2;
}

.b2b-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.b2b-feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.b2b-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.b2b-feature p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.b2b-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-color);
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.b2b-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
}

.b2b-cta:hover::before {
    right: 150%;
}

.b2b-cta * {
    position: relative;
    z-index: 2;
}

.b2b-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

/* B2B Pricing Cards */
.b2b-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: var(--max-width);
    padding: 0 1rem;
    justify-content: center;
}

.b2b-price-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.b2b-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
}

.b2b-price-card:hover::before {
    right: 150%;
}

.b2b-price-card * {
    position: relative;
    z-index: 2;
}

.b2b-price-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.b2b-price-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.b2b-price-card .price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.b2b-price-card .price-tag .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.b2b-price-card .description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.b2b-price-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.b2b-price-card ul li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.b2b-price-card ul li i {
    color: var(--accent-color);
}

.b2b-price-card .contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: 100%;
    text-align: center;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.b2b-price-card .contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
}

.b2b-price-card .contact-btn:hover::before {
    right: 150%;
}

.b2b-price-card .contact-btn * {
    position: relative;
    z-index: 2;
}

.b2b-price-card .contact-btn:hover {
    background: var(--accent-color-dark);
    transform: translateY(-2px);
}

.saving-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .b2b-section {
        padding: 6rem 1rem;
    }

    .b2b-features {
        grid-template-columns: 1fr;
    }

    .b2b-feature {
        padding: 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

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

    .quote blockquote {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .partners {
        gap: 2rem;
        padding: 1rem;
    }

    .partner-logo {
        flex: 0 1 120px;
    }

    .testimonial {
        margin-top: 2.5rem;
    }
}

/* Animations AOS custom */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

/* Délais d'animation */
[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}

[data-aos-delay="500"] {
    transition-delay: 0.5s;
}

/* CTA Principal */
.cta-main {
    text-align: center;
    padding: 4rem 0 10rem;
    display: flex;
    margin-top: -110px;
    justify-content: center;
    align-items: center;
    background-color: var(--light-bg);
}

.cta-main .cta-button {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-main .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: right 0.75s ease;
}

.cta-main .cta-button:hover::before {
    right: 150%;
}

.cta-main .cta-button * {
    position: relative;
    z-index: 2;
}

/* Media Queries pour Responsive Design */
@media screen and (max-width: 1200px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .destinations-carousel .carousel-track {
        gap: 20px;
    }

    .destination-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
        padding: 60px 20px;
    }

    .destination-card {
        flex: 0 0 calc(50% - 20px);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .destination-card {
        flex: 0 0 calc(100% - 20px);
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -0.5rem;
        width: 30%;
        height: 1px;
        margin: auto;
        background: var(--accent-color);
        transform: translate(115%, 0%);
    }

    .social-links {
        justify-content: center;
    }
    .payment-methods {
        justify-content: center;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    .promo-banner p {
        font-size: 0.9rem;
        padding: 8px;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        max-width: 150px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .quote blockquote {
        font-size: 1.2rem;
        padding: 0 15px;
    }

    .partner-logo img {
        width: 60px;
    }

    .service-outils .icon {
        font-size: 2rem;
    }
}

/* Ajustements pour les animations au scroll en mobile */
@media screen and (max-width: 768px) {
    .service-outils .icon.animate-icon {
        transform: translateY(-3px);
    }

    [data-aos] {
        transform: translateY(20px);
    }
}

/* Optimisations pour les performances mobiles */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Section promotion */
.promo-section {
    background: var(--gradient-accent);
    padding: 4rem 0;
    color: var(--white);
    text-align: center;
}

.promo-section .new-price {
    color: white;
    font-size: 7rem;
}

.promo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.promo-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    flex-direction: column;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.promo-price .old-price {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 1.5rem;
}

.promo-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .promo-section {
        padding: 3rem 0;
    }

    .new-price {
        font-size: 2rem;
    }

    .promo-price .old-price {
        font-size: 1.2rem;
    }

    .promo-tagline {
        font-size: 1rem;
    }
}

/* Section chiffres clés */
.key-figures {
    padding: 6rem 0;
    background: none;
    margin-top: -180px;
    position: relative;
    top: 0;
    z-index: 3;
    overflow: visible;
}

.key-figures .container {
    height: 359px;
    overflow: visible;
}

.key-figures h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.figures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    font-size: 0.75em;
}

.figure-item {
    text-align: center;
    padding: 2rem;
    background: #FFF4;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    top: 30px;
}

.figure-item.aos-init.aos-animate:nth-child(2) {
    top: 230px;
}
.figure-item.aos-init.aos-animate:nth-child(3) {
    top: 70px;
}
.figure-item.aos-init.aos-animate:nth-child(4) {
    top: 180px;
}

.figure-item:nth-child(1) {
    animation-delay: 0s;
}

.figure-item:nth-child(2) {
    animation-delay: 1.5s;
}

.figure-item:nth-child(3) {
    animation-delay: 3s;
}

.figure-item:nth-child(4) {
    animation-delay: 4.5s;
}

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

.figure-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.figure-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--box-shadow);
    animation-play-state: paused;
}

.figure-item:hover::before {
    opacity: 0.8;
    transform: scale(1) rotate(45deg);
}

.figure-item i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin: 2rem 0 0;
    position: relative;
    transition: all 0.4s ease;
}

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

.figure-item .counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0 -17px;
    position: relative;
    transition: all 0.4s ease;
}

.figure-item:hover .counter {
    transform: scale(1.05);
}

.figure-item p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
    position: relative;
    transition: all 0.4s ease;
}

@media screen and (max-width: 768px) {
    .key-figures {
        padding: 4rem 0;
    }

    .figures-grid {
        gap: 2rem;
    }

    .figure-item {
        padding: 1.5rem;
    }

    .figure-item i {
        font-size: 2rem;
    }

    .figure-item .counter {
        font-size: 2rem;
    }

    .figure-item p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .key-figures {
        padding: 4rem 0;
    }

    .figures-grid {
        gap: 2rem;
    }

    .figure-item {
        animation-duration: 8s;
    }

    .figure-item:nth-child(1) {
        animation-delay: 0s;
    }

    .figure-item:nth-child(2) {
        animation-delay: 2s;
    }

    .figure-item:nth-child(3) {
        animation-delay: 4s;
    }

    .figure-item:nth-child(4) {
        animation-delay: 6s;
    }

    .figure-item i {
        font-size: 2rem;
    }

    .figure-item .counter {
        font-size: 2rem;
    }

    .figure-item p {
        font-size: 1rem;
    }
}

/* Section Garantie Satisfaction */
.satisfaction-guarantee {
    background-color: #f8f9fa;
    padding: 0;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: rgb(226 242 230);
    position: relative;
    overflow: hidden;
}

.guarantee-content::before {
    content: "\f132";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 30rem;
    color: rgba(76, 175, 80, 0.15);
    right: -4rem;
    bottom: -13rem;
    z-index: 0;
    transform: rotate(-20deg);
}

.guarantee-content > * {
    position: relative;
    z-index: 1;
}

.guarantee-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.guarantee-content h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.guarantee-highlight {
    font-size: 1.3rem;
    color: #2196F3;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guarantee-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.guarantee-features li {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #555;
}

.guarantee-features i {
    color: #4CAF50;
    margin-right: 10px;
}

.guarantee-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1.5rem;
}

/* FAQ Page Styles */
.faq-header {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-category h2 {
    color: #1976D2;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-category h2 i {
    font-size: 1.2em;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    cursor: pointer;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    padding-right: 2rem;
}

.faq-question i {
    color: #1976D2;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 1rem 0;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-answer ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    color: #666;
    margin-bottom: 0.5rem;
}

.faq-contact {
    text-align: center;
    padding: 4rem 0;
    background: white;
}

.faq-contact h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.faq-contact p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1976D2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background: #1565C0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-header {
        padding: 3rem 1rem;
    }

    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-category {
        padding: 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Séparateur visuel */
.visual-separator-fixed {
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin: 0;
}

/* Séparateur visuel */
.visual-separator {
    height: 500px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0;
}

.separator-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.03);
}

/* Galerie d'ambiance */
.mood-gallery {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.mood-gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.mood-gallery h3 {
    text-align: center;
    color: #333;
    font-weight: 100;
    margin: 3rem;
    font-size: 1.2rem;
    letter-spacing: 0.25rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    aspect-ratio: 3/2;
    max-width: 100%;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .visual-separator {
        height: 200px;
    }
}
.pdf-preview {
    padding: 80px 20px;    
    background: var(--secondary-color);
}

.pdf-container {
    max-width: 800px;
    margin: 0 auto;
}

.pdf-container ul i.fas {
    padding: 12px;
    width: 50px;
    border: var(--secondary-color) 1px solid;
    border-radius: 50%;
    aspect-ratio: 1;
    height: 50px;
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.pdf-preview .cta-2-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: row;
}

.pdf-features {
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pdf-features h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.pdf-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.pdf-features li {
    padding: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    justify-content: flex-start;
    flex-direction: row;
}

.pdf-features li:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pdf-features i {
    color: #3498db;
    font-size: 20px;
    width: 25px;
}

.pdf-features .cta-button {
    margin: 10px auto;
    max-width: 300px;
    display: block;
    text-align: center;
}

.pdf-features .cta-button i {
    color: white;
    margin-right: 10px;
    width: auto;
}

@media (max-width: 768px) {
    .pdf-features {
        padding: 20px;
    }
    
    .pdf-features ul {
        grid-template-columns: 1fr;
    }
    
    .pdf-features li {
        font-size: 15px;
    }
}

.pdf-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pdf-mockup {
    flex: 1;
    min-width: 300px;
}

.pdf-page {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    border-radius: 8px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pdf-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.pdf-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
}

.pdf-content {
    flex: 1;
}

.pdf-section {
    margin-bottom: 30px;
}

.pdf-section h4 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.pdf-section ul {
    list-style: none;
    padding: 0;
}

.pdf-section li {
    padding: 12px 0;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.pdf-section li strong {
    color: #2c3e50;
    font-weight: 600;
}

.pdf-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.page-number {
    background: #3498db;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 500;
}

.pdf-features {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pdf-features h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
}

.pdf-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pdf-features li {
    padding: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.pdf-features i {
    color: #3498db;
    font-size: 20px;
    width: 25px;
}

.pdf-features .cta-button {
    margin: 10px 0;
    width: 100%;
    text-align: center;
}

.pdf-features .cta-button i {
    color: white;
    margin-right: 10px;
    width: auto;
}

@media (max-width: 768px) {
    .pdf-container {
        flex-direction: column;
    }
    
    .pdf-page {
        padding: 20px;
        min-height: 400px;
    }
    
    .pdf-features {
        text-align: center;
    }
    
    .pdf-features li {
        justify-content: center;
    }
}

/* Notre approche section */
.notre-approche {
    padding: 80px 0;
    background: linear-gradient(175deg, rgb(202 220 236) 15%, rgba(74, 144, 226, 0.5), #4A90E2 100%);
}
/*
.notre-approche .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    background: #FFFB;
    border-radius: 80px;
    border: 5px var(--secondary-color) dotted;
}
    */

.notre-approche h2 {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.approche-content {
    display: flex;
    justify-content: center;
}

.approche-text {
    max-width: 800px;
}

.approche-text h3 {
    color: #2c3e50;
    font-size: 1.8em;
    margin: 30px 0 15px;
}

.approche-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .notre-approche {
        padding: 40px 0;
    }

    .notre-approche h2 {
        font-size: 2em;
    }

    .approche-text h3 {
        font-size: 1.5em;
    }

    .approche-text p {
        font-size: 1em;
    }
}


/* Notre approche section */
.notre-approche {
    padding: 100px 0;
    background: linear-gradient(175deg, rgb(202 220 236) 15%, rgba(74, 144, 226, 0.5), #4A90E2 100%);
    position: relative;
    overflow: hidden;
}

.notre-approche::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.05) 0%, rgba(var(--secondary-color-rgb), 0.05) 100%);
    transform: rotate(-15deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.notre-approche .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.notre-approche h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    position: relative;
}

.notre-approche h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 1rem auto;
    border-radius: 2px;
}

.approche-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.approche-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.approche-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.approche-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin: 0 auto 20px;
}

.approche-icon i {
    font-size: 2rem;
    color: var(--white);
}

.approche-text-content {
    flex: 1;
}

.approche-text-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.approche-text-content p {
    font-size: 1rem;
    color: var(--text-color-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .notre-approche {
        padding: 60px 0;
    }

    .notre-approche h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .approche-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .approche-item {
        padding: 1.5rem;
    }

    .approche-icon {
        width: 60px;
        height: 60px;
    }

    .approche-icon i {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .approche-content {
        grid-template-columns: repeat(2, 1fr);
    }
}