/* Variables de couleurs */
:root {
    --bordeaux: #aa1845;
    --bleu-violet: #5271ff;
    --bleu-clair: #5271ff;
    --blanc: #FFFFFF;
    --noir: #202020;
    --gris-clair: #F5F5F5;
    --gris: #E0E0E0;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--noir);
    background-color: var(--blanc);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--bordeaux);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s ease;
}

.header .logo img {
    width:150px;
}

.header.scrolled {
    background-color: var(--blanc);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    font-size: 0.9rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    gap: 1.5rem;
}

.header-contact a {
    color: var(--blanc);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.header-contact a:hover {
    color: var(--bleu-clair);
}

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

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--blanc);
    transition: all 0.3s ease;
}

.header-social a:hover {
    background-color: var(--bleu-clair);
    transform: translateY(-3px);
}

.header-main {
    padding: .5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.header.scrolled .header-main {
    padding: 1rem 0;
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border-radius: 12px;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 12px 25px rgba(138, 43, 226, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--bordeaux), var(--bleu-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.85rem;
    color: #777;
    letter-spacing: 0.5px;
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    color: var(--noir);
    transition: all 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--bleu-violet);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Header CTA */
.header-cta {
    margin-left: 2rem;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bleu-clair), var(--bleu-violet));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-header:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(138, 43, 226, 0.3);
}

.btn-header:hover::before {
    opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--blanc);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-header .logo a {
    gap: 0.5rem;
}

.mobile-menu-header .logo h1 {
    font-size: 1.5rem;
}

.mobile-menu-header .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--bleu-violet);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(138, 43, 226, 0.1);
}

.mobile-nav {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    color: var(--noir);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--bleu-violet);
    transform: translateX(5px);
}

.mobile-contact,
.mobile-social,
.mobile-cta {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--noir);
    font-size: 1rem;
}

.mobile-contact a i {
    color: var(--bleu-violet);
    width: 20px;
    text-align: center;
}

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

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--bleu-violet);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--bleu-violet);
    color: var(--blanc);
    transform: translateY(-3px);
}

.mobile-cta {
    padding-top: 2rem;
    text-align: center;
}

.btn-mobile {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-mobile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Media queries */
@media (max-width: 992px) {
    .main-nav, 
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-top {
        display: none;
    }
    
    .header-main {
        padding: 1rem 0;
        background-color: var(--blanc);
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
}

/* Main content padding to account for fixed header */
main {
    padding-top: 100px; /* Adjusted based on your new header height */
}

@media (max-width: 992px) {
    main {
        padding-top: 80px;
    }
}

/* Add scroll effect to header */
@keyframes fadeInHeader {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 780px;
    display: flex;
    align-items: center;
    background-color: #f8f9fc;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(82, 110, 254, 0.05));
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(82, 110, 254, 0.05));
    z-index: 1;
}

.hero-left {
    width: 50%;
    padding-left: 8%;
    position: relative;
    z-index: 5;
}

.hero-right {
    width: 50%;
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-family: 'Raleway', sans-serif;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--noir);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--bordeaux), var(--bleu-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bleu-clair), var(--bleu-violet));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bleu-violet);
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.btn-secondary:hover {
    background-color: var(--bleu-violet);
    color: var(--blanc);
    border-color: var(--bleu-violet);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.15);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    background-color: var(--blanc);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 500px;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bordeaux);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.3rem;
}

.stat-text {
    font-size: 0.8rem;
    color: #777;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 1.5rem;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin-right: 8%;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(82, 110, 254, 0.3));
    z-index: 1;
    opacity: 0.5;
}

.image-shape-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 30px;
    background-color: rgba(138, 43, 226, 0.03);
    top: -30px;
    right: -50px;
    z-index: -1;
    border: 2px solid rgba(138, 43, 226, 0.1);
}

.image-shape-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background-color: rgba(82, 110, 254, 0.03);
    bottom: -20px;
    left: -20px;
    z-index: -1;
    border: 2px solid rgba(82, 110, 254, 0.1);
}

/* Hero Destinations */
.hero-destinations {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.destination-pill {
    display: flex;
    align-items: center;
    background-color: var(--blanc);
    border-radius: 50px;
    padding: 8px 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.destination-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.destination-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border-radius: 50%;
    font-size: 0.7rem;
    margin-right: 8px;
}

.destination-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--noir);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-left {
        padding-left: 5%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image-container {
        margin-right: 5%;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 5rem 0;
        min-height: auto;
    }

    .hero-right {
        display: none;
    }
    
    .hero-left, 
    .hero-right {
        width: 100%;
        padding: 0 5%;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-description {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        margin: 0 auto;
    }
    
    .hero-image-container {
        height: 400px;
        margin: 0 5%;
    }
    
    .hero-image {
        border-radius: 20px;
    }
    
    .image-shape-1,
    .image-shape-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        max-width: 100%;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-text {
        font-size: 0.7rem;
    }
    
    .stat-divider {
        margin: 0 1rem;
    }
    
    .hero-image-container {
        height: 350px;
    }
    
    .hero-destinations {
        flex-wrap: wrap;
        justify-content: center;
        width: 90%;
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-image-container {
        height: 250px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
        margin: 0;
    }
    
    .destination-pill {
        padding: 6px 10px;
    }
    
    .destination-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
    
    .destination-text {
        font-size: 0.8rem;
    }
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--blanc);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23526efe' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
    position: relative;
    z-index: 1;
}

.section-pretitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--bleu-violet);
    display: block;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.2rem;
    color: var(--noir);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title .highlight {
    color: var(--bleu-violet);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--bleu-violet) 0%, var(--bleu-clair) 100%);
    z-index: -1;
    opacity: 0.3;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bleu-violet) 0%, var(--bleu-clair) 100%);
    margin: 0 auto 1.8rem;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
}

/* Features Container */
.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-bottom: 6rem;
}

.feature-item {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background-color: var(--blanc);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(82, 110, 254, 0.05));
    z-index: 0;
}

.feature-icon {
    position: relative;
    z-index: 1;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--blanc);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.25);
    transition: all 0.5s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-item h3 {
    font-size: 1.8rem;
    color: var(--noir);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 1rem;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--bleu-violet), var(--bleu-clair));
    transition: width 0.3s ease;
}

.feature-item:hover h3::after {
    width: 80px;
}

.feature-item p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bleu-violet);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.feature-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--bleu-violet), var(--bleu-clair));
    transition: width 0.3s ease;
}

.feature-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-link::after {
    width: 100%;
}

.feature-item:hover .feature-link i {
    transform: translateX(5px);
}

/* Destinations Header */
.destinations-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.destinations-header h3 {
    font-size: 2rem;
    color: var(--noir);
    margin-bottom: 1rem;
}

.destinations-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--bleu-violet), var(--bleu-clair));
    margin: 0 auto;
    border-radius: 3px;
}

/* Cities Showcase */
.cities-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.city-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    height: 300px;
    transition: all 0.5s ease;
}

.city-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.city-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.city-card:hover .city-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.city-name {
    position: absolute;
    bottom: 25px;
    left: 30px;
    color: var(--blanc);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.city-card:hover .city-name {
    transform: translateY(-8px);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

/* Media Queries */
@media (max-width: 1200px) {
    .features-container {
        justify-content: center;
    }
    
    .feature-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 992px) {
    .features {
        padding: 6rem 0;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .features-container {
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .feature-item {
        min-width: 300px;
    }
    
    .feature-image-container {
        height: 180px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .feature-content {
        padding: 2rem;
    }
    
    .feature-item h3 {
        font-size: 1.6rem;
    }
    
    .cities-showcase {
        gap: 1.5rem;
    }
    
    .city-card {
        height: 250px;
    }
    
    .city-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-container {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .destinations-header h3 {
        font-size: 1.8rem;
    }
    
    .cities-showcase {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .section-pretitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-image-container {
        height: 160px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .feature-content {
        padding: 1.8rem;
    }
    
    .feature-item h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-item p {
        font-size: 1rem;
    }
    
    .city-card {
        height: 220px;
    }
    
    .city-name {
        font-size: 1.8rem;
        left: 20px;
        bottom: 20px;
    }
}

/* Footer */
.footer {
    background-color: #f8f9fd;
    color: #555;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-logo img {
    width: 200px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 5% 20%, rgba(138, 43, 226, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 95% 80%, rgba(82, 110, 254, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.2);
}

.footer-logo h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--bordeaux), var(--bleu-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
}

.footer h4 {
    color: var(--noir);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--bordeaux), var(--bleu-violet));
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #555;
    transition: var(--transition);
    padding-left: 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--bleu-violet);
    padding-left: 12px;
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--bleu-violet);
    font-size: 0.9rem;
    width: 20px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(138, 43, 226, 0.05);
    color: var(--bleu-violet);
    transition: var(--transition);
    font-size: 1rem;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.social-icons a:hover {
    transform: translateY(-5px);
    color: var(--blanc);
    background: linear-gradient(135deg, var(--bordeaux), var(--bleu-violet));
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #777;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: #777;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--bleu-violet);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Why Choose Us Section */
.why-choose {
    position: relative;
    padding: 8rem 0;
    color: var(--blanc);
    overflow: hidden;
}

.why-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/bus.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.25);
    z-index: -1;
}

.why-choose-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(82, 110, 254, 0.85) 0%, rgba(138, 43, 226, 0.85) 100%);
    opacity: 0.85;
}

.why-choose-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.why-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blanc);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-title {
    font-size: 3.2rem;
    color: var(--blanc);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.text-accent {
    color: var(--blanc);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--bleu-clair);
    z-index: -1;
    opacity: 0.3;
    border-radius: 10px;
}

.why-divider {
    width: 80px;
    height: 4px;
    background: var(--blanc);
    margin: 0 auto 4rem;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
}

.advantage-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--blanc);
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-item:hover .advantage-icon {
    background: var(--bleu-clair);
    transform: rotate(10deg);
    border-radius: 50%;
}

.advantage-content {
    flex-grow: 1;
}

.advantage-item h3 {
    color: var(--blanc);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.advantage-line {
    width: 40px;
    height: 3px;
    background: var(--bleu-clair);
    margin: 0 0 1rem;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.advantage-item:hover .advantage-line {
    width: 60px;
    background: var(--blanc);
}

.advantage-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Testimonial */
.testimonial {
    max-width: 800px;
    margin: 0 auto 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    position: relative;
    padding-left: 3rem;
}

.testimonial-quote i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    color: var(--bleu-clair);
    opacity: 0.5;
}

.testimonial-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--blanc);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--blanc);
}

.author-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Button */
.why-cta {
    margin-top: 2rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--blanc);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bleu-clair), var(--bleu-violet));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-outline:hover {
    color: var(--blanc);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline i {
    transition: transform 0.3s ease;
}

.btn-outline:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .advantages-grid {
        gap: 2rem;
    }
    
    .advantage-item {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .why-choose {
        padding: 6rem 0;
    }
    
    .why-title {
        font-size: 2.8rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 5rem 0;
    }
    
    .why-title {
        font-size: 2.4rem;
    }
    
    .why-divider {
        margin-bottom: 3rem;
    }
    
    .advantage-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .advantage-icon {
        margin-bottom: 0.5rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .testimonial-quote {
        padding-left: 2.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .why-title {
        font-size: 2rem;
    }
    
    .why-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.5rem;
    }
    
    .advantage-item h3 {
        font-size: 1.3rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        padding-left: 2rem;
    }
    
    .testimonial-quote i {
        font-size: 1.6rem;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 7rem 0;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(82, 110, 254, 0.03));
    z-index: 1;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(82, 110, 254, 0.03));
    z-index: 1;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.testimonials-quote-icon {
    position: absolute;
    top: -30px;
    right: 0;
    color: var(--bleu-violet);
    font-size: 8rem;
    opacity: 0.05;
    z-index: -1;
}

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

.testimonial-card {
    background-color: var(--blanc);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    transition: width 0.5s ease;
    border-top-left-radius: 20px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
    width: 100%;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: -10px;
    font-size: 2rem;
    color: var(--bleu-violet);
    opacity: 0.2;
}

.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--bleu-violet);
    opacity: 0.2;
    margin-left: 5px;
    vertical-align: bottom;
    line-height: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

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

.author-initial {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanc);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.author-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--noir);
}

.author-details span {
    font-size: 0.85rem;
    color: #888;
    display: block;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    width: 30px;
    border-radius: 10px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
}

.nav-dot:hover {
    background-color: var(--bleu-clair);
}

.testimonials-cta {
    text-align: center;
}

.btn-testimonial {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--bleu-violet);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.btn-testimonial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    transition: width 0.3s ease;
}

.btn-testimonial:hover {
    color: var(--bleu-clair);
}

.btn-testimonial:hover::after {
    width: 100%;
}

.btn-testimonial i {
    transition: transform 0.3s ease;
}

.btn-testimonial:hover i {
    transform: translateX(5px);
}

@media (max-width: 1100px) {
    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .testimonials {
        padding: 5rem 0;
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 0 auto 2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .author-initial {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .testimonial-rating {
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .author-initial {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .author-details h4 {
        font-size: 1rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 7rem 0;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 5% 20%, rgba(138, 43, 226, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 95% 80%, rgba(82, 110, 254, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 5rem;
}

.reviews-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bleu-violet);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
}

.reviews-label::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
}

.reviews-title {
    font-size: 3rem;
    color: var(--noir);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.reviews-separator {
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    margin: 0 auto;
    opacity: 0.5;
    border-radius: 3px;
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.review-item {
    position: relative;
    background: var(--blanc);
    border-radius: 15px;
    padding: 3.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.review-item:nth-child(1) {
    border-top: 4px solid var(--bleu-violet);
}

.review-item:nth-child(2) {
    border-top: 4px solid var(--bleu-clair);
}

.review-item:nth-child(3) {
    border-top: 4px solid var(--bordeaux);
}

.review-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.review-content {
    margin-bottom: 2rem;
}

.review-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
}

.review-avatar {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--noir);
}

.review-date {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-date::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 2px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    opacity: 0.5;
}

.reviews-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.btn-review i {
    transition: transform 0.3s ease;
}

.btn-review:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.3);
}

.btn-review:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .reviews {
        padding: 5rem 0;
    }
    
    .reviews-title {
        font-size: 2.5rem;
    }
    
    .review-item {
        padding: 3rem;
    }
    
    .review-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .reviews-header {
        margin-bottom: 3.5rem;
    }
    
    .reviews-title {
        font-size: 2.2rem;
    }
    
    .review-item {
        padding: 2.5rem;
    }
    
    .review-icon {
        left: 20px;
    }
}

@media (max-width: 576px) {
    .reviews-title {
        font-size: 1.8rem;
    }
    
    .reviews-label {
        font-size: 0.8rem;
    }
    
    .review-item {
        padding: 2rem;
    }
    
    .review-content p {
        font-size: 0.95rem;
    }
    
    .review-meta {
        padding-top: 1.5rem;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .review-info h4 {
        font-size: 1rem;
    }
    
    .btn-review {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Section Avis */
.avis {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #fcfcfc, #f8f9fd);
    position: relative;
    overflow: hidden;
}

.avis::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(82, 110, 254, 0.03));
    z-index: 0;
}

.avis::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(82, 110, 254, 0.03));
    z-index: 0;
}

.avis-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.avis-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.avis-box {
    position: relative;
    height: 100%;
    padding: 5px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(138, 43, 226, 0.1));
    transition: all 0.5s ease;
}

.avis-box:hover {
    transform: translateY(-15px);
}

.avis-box:hover .avis-quote {
    transform: translateY(-5px) rotate(-5deg);
    opacity: 0.9;
}

.avis-box-inner {
    position: relative;
    height: 100%;
    background-color: var(--blanc);
    border-radius: 18px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.avis-box-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.avis-box:hover .avis-box-inner::before {
    opacity: 1;
}

.avis-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--bleu-violet);
    font-size: 2.2rem;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.avis-rating {
    margin-bottom: 2rem;
    color: #FFD700;
    font-size: 1.1rem;
    display: flex;
    gap: 0.3rem;
}

.avis-contenu {
    flex-grow: 1;
    margin-bottom: 2.5rem;
    position: relative;
}

.avis-contenu p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
}

.avis-auteur {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.avis-auteur::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    opacity: 0.3;
    transition: width 0.3s ease;
}

.avis-box:hover .avis-auteur::before {
    width: 70px;
}

.auteur-photo {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.2);
    transition: transform 0.3s ease;
}

.avis-box:hover .auteur-photo {
    transform: scale(1.1) rotate(5deg);
}

.auteur-info {
    display: flex;
    flex-direction: column;
}

.auteur-info h4 {
    color: var(--noir);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.auteur-info span {
    color: #888;
    font-size: 0.9rem;
}

/* Scroll Indicator */
.avis-scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    box-shadow: 0 2px 10px rgba(138, 43, 226, 0.3);
    transform: scale(1.3);
}

.scroll-line {
    width: 40px;
    height: 2px;
    background-color: #eee;
}

@media (max-width: 1200px) {
    .avis-container {
        gap: 2rem;
    }
    
    .avis-box-inner {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .avis {
        padding: 6rem 0;
    }
    
    .avis-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 0 auto;
        gap: 2rem;
    }
    
    .avis-box:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .avis {
        padding: 5rem 0;
    }
    
    .avis-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .avis-box:last-child {
        grid-column: span 1;
    }
    
    .avis-rating {
        margin-bottom: 1.5rem;
    }
    
    .avis-box-inner {
        padding: 2rem;
    }
    
    .avis-quote {
        font-size: 1.8rem;
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .avis-box-inner {
        padding: 1.8rem;
    }
    
    .avis-contenu p {
        font-size: 0.95rem;
    }
    
    .auteur-photo {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .auteur-info h4 {
        font-size: 1rem;
    }
    
    .avis-contenu {
        margin-bottom: 2rem;
    }
}

/* Social Connect Section */
.social-connect {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8f9fd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.social-connect::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(82, 110, 254, 0.05));
    z-index: 0;
}

.social-connect::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(82, 110, 254, 0.05));
    z-index: 0;
}

.social-connect-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-connect-content {
    text-align: center;
}

.social-connect-title {
    font-size: 3.2rem;
    color: var(--noir);
    margin-bottom: 1.5rem;
}

.gradient-accent {
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.social-connect-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    margin: 0 auto 1.8rem;
    border-radius: 3px;
}

.social-connect-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.social-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.social-platform-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background-color: var(--blanc);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.social-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.social-platform-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.15);
    color: var(--blanc);
}

.social-platform-card:hover::before {
    opacity: 1;
}

.platform-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
    font-size: 1.8rem;
    color: var(--blanc);
    transition: all 0.4s ease;
}

.facebook {
    background: linear-gradient(135deg, #3b5998, #5374bc);
    box-shadow: 0 10px 20px rgba(59, 89, 152, 0.3);
}

.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
}

.social-platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.platform-info {
    text-align: left;
    flex-grow: 1;
}

.platform-info h3 {
    font-size: 1.5rem;
    color: var(--noir);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.platform-info p {
    color: #777;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-platform-card:hover .platform-info h3,
.social-platform-card:hover .platform-info p {
    color: var(--blanc);
}

.platform-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: var(--bleu-violet);
    font-size: 1rem;
    transition: all 0.4s ease;
}

.social-platform-card:hover .platform-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--blanc);
    transform: translateX(5px);
}

.social-connect-cta {
    margin-top: 2rem;
}

.btn-connect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bleu-clair), var(--bleu-violet));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-connect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.35);
}

.btn-connect:hover::before {
    opacity: 1;
}

.btn-connect i {
    transition: transform 0.3s ease;
}

.btn-connect:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .social-connect {
        padding: 6rem 0;
    }
    
    .social-connect-title {
        font-size: 2.8rem;
    }
    
    .social-connect-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .social-platforms {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .social-platform-card {
        padding: 2rem;
    }
    
    .platform-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .platform-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .social-connect {
        padding: 5rem 0;
    }
    
    .social-connect-title {
        font-size: 2.4rem;
    }
    
    .social-connect-subtitle {
        font-size: 1rem;
    }
    
    .social-platforms {
        flex-direction: column;
        align-items: center;
    }
    
    .social-platform-card {
        width: 100%;
        max-width: 480px;
    }
    
    .btn-connect {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .social-connect-title {
        font-size: 2rem;
    }
    
    .social-platform-card {
        padding: 1.8rem;
        gap: 1rem;
    }
    
    .platform-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .platform-info h3 {
        font-size: 1.2rem;
    }
    
    .platform-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* About Section */
.about-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #ffffff, #f8f9ff);
}

.about-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(82, 110, 254, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.about-saas-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* About Card */
.about-saas-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(8, 21, 66, 0.05);
    overflow: hidden;
}

.about-saas-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--bleu-violet), var(--bleu-clair));
    border-radius: 20px 0 0 20px;
}

.about-saas-content {
    padding: 3rem;
}

.about-saas-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(138, 43, 226, 0.1), rgba(82, 110, 254, 0.1));
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 2rem;
}

.badge-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border-radius: 50%;
    font-size: 0.8rem;
    margin-right: 0.8rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bleu-violet);
    letter-spacing: 0.5px;
}

.about-saas-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.about-saas-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
}

/* Mission Section */
.about-saas-mission {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 25px 50px rgba(8, 21, 66, 0.05);
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    font-size: 2rem;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.15);
    position: relative;
    z-index: 1;
}

.mission-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: rgba(138, 43, 226, 0.1);
    z-index: -1;
}

.about-saas-mission h3 {
    font-size: 2rem;
    color: var(--noir);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-saas-mission h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    border-radius: 3px;
}

.mission-text {
    max-width: 800px;
    margin: 2rem auto 0;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.about-saas-values {
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-box {
    position: relative;
    height: 100%;
    padding: 5px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(82, 110, 254, 0.05));
    transition: all 0.4s ease;
}

.value-box:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(82, 110, 254, 0.1));
}

.value-box-inner {
    background: #ffffff;
    height: 100%;
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-box-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.15);
    transition: all 0.4s ease;
}

.value-box:hover .value-box-icon {
    transform: scale(1.1) rotate(10deg);
    border-radius: 50%;
}

/* About Intro Section */
.about-intro {
    padding: 3rem 0;
    background: linear-gradient(120deg, #f8f9ff, #ffffff);
    position: relative;
    overflow: hidden;
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.intro-header {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.intro-accent-line {
    width: 5px;
    height: 50px;
    background: linear-gradient(to bottom, var(--bleu-violet), var(--bleu-clair));
    border-radius: 5px;
}

.intro-header h2 {
    font-size: 2.6rem;
    background: linear-gradient(135deg, var(--noir), #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.intro-content {
    position: relative;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(8, 21, 66, 0.03);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    max-width: 900px;
}

.intro-highlights {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(8, 21, 66, 0.03);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    flex: 1;
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--bleu-violet);
    box-shadow: 0 15px 30px rgba(8, 21, 66, 0.06);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border-radius: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(138, 43, 226, 0.15);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: rotate(10deg);
    border-radius: 50%;
}

.highlight-text {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.intro-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(82, 110, 254, 0.03));
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -30px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    left: -30px;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: 100px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.03), rgba(138, 43, 226, 0.03));
}

@media (max-width: 992px) {
    .intro-header h2 {
        font-size: 2.2rem;
    }
    
    .intro-content {
        padding: 2.5rem;
    }
    
    .intro-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding: 5rem 0;
    }
    
    .intro-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .intro-content {
        padding: 2rem;
    }
    
    .highlight-item {
        padding: 0.8rem 1.2rem;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .intro-header h2 {
        font-size: 2rem;
    }
    
    .intro-accent-line {
        height: 40px;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
    
    .intro-content {
        padding: 1.5rem;
    }
}

/* Mission Section */
.mission-section {
    padding: 7rem 0;
    position: relative;
    background: linear-gradient(135deg, #fcfcff 0%, #f8f9ff 100%);
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03) 0%, rgba(82, 110, 254, 0.03) 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 1;
}

.mission-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(82, 110, 254, 0.03) 0%, rgba(138, 43, 226, 0.03) 100%);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 1;
}

.mission-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mission-title-accent {
    width: 6px;
    height: 60px;
    background: linear-gradient(to bottom, var(--bleu-violet), var(--bleu-clair));
    border-radius: 6px;
}

.mission-header h2 {
    font-size: 2.8rem;
    color: var(--noir);
    position: relative;
}

.mission-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--bleu-violet), var(--bleu-clair));
    border-radius: 3px;
}

.mission-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(8, 21, 66, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mission-quote {
    text-align: center;
    position: relative;
    margin-bottom: 1rem;
}

.quote-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.15);
}

.quote-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--noir);
    margin-top: 1.5rem;
    padding: 0 2rem;
    position: relative;
    display: inline-block;
}

.quote-text::before,
.quote-text::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--bleu-violet), transparent);
    border-radius: 3px;
}

.quote-text::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.quote-text::after {
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

.mission-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-block-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(8, 21, 66, 0.03);
    border-left: 3px solid var(--bleu-violet);
}

.mission-block-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

.mission-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    padding: 0 1rem;
}

.mission-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    border-radius: 50%;
    position: relative;
}

.feature-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.feature-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #4a5568;
}

.mission-partner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(8, 21, 66, 0.07);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.mission-partner:hover {
    transform: translateY(-5px);
}

.partner-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border-radius: 12px;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.15);
    flex-shrink: 0;
}

.partner-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.partner-text span {
    font-size: 0.9rem;
    color: #777;
}

.partner-text h4 {
    font-size: 1.3rem;
    color: var(--noir);
    margin: 0;
}

@media (max-width: 992px) {
    .mission-header h2 {
        font-size: 2.4rem;
    }
    
    .mission-content {
        padding: 2.5rem;
    }
    
    .quote-text {
        font-size: 1.4rem;
    }
    
    .mission-block-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 5rem 0;
    }
    
    .mission-header h2 {
        font-size: 2.2rem;
    }
    
    .mission-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .mission-content {
        padding: 2rem;
    }
    
    .quote-text {
        font-size: 1.3rem;
    }
    
    .mission-block-item p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .mission-header h2 {
        font-size: 2rem;
    }
    
    .mission-title-accent {
        height: 50px;
        width: 5px;
    }
    
    .mission-content {
        padding: 1.5rem;
    }
    
    .quote-text {
        font-size: 1.2rem;
        padding: 0 1.5rem;
    }
    
    .quote-text::before,
    .quote-text::after {
        width: 30px;
    }
    
    .mission-partner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Mission Intro - variation sur About Intro */
.mission-intro {
    background: linear-gradient(120deg, #ffffff, #f8f9ff);
}

.mission-intro .intro-accent-line {
    background: linear-gradient(to bottom, var(--bleu-clair), var(--bleu-violet));
}

.mission-intro .intro-text p {
    margin-bottom: 1rem;
}

.mission-intro .intro-text p:last-child {
    margin-bottom: 0;
}

.mission-intro .intro-content {
    border: 1px solid rgba(82, 110, 254, 0.1);
}

.mission-intro .highlight-icon {
    background: linear-gradient(135deg, var(--bleu-clair), var(--bleu-violet));
}

.mission-intro .highlight-item:hover {
    border-bottom: 3px solid var(--bleu-clair);
}

.mission-intro .shape {
    background: linear-gradient(135deg, rgba(82, 110, 254, 0.03), rgba(138, 43, 226, 0.03));
}

.mission-intro .shape-3 {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(82, 110, 254, 0.03));
}

/* Team Intro Section */
.team-intro {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f9faff, #ffffff);
    position: relative;
    overflow: hidden;
}

.team-intro .intro-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(8, 21, 66, 0.04);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border: 1px solid rgba(138, 43, 226, 0.08);
}

.team-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.team-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a5568;
    font-weight: 500;
}

.founder-story {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.story-header {
    text-align: center;
}

.story-header span {
    display: inline-block;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.15);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    font-style: italic;
}

.quote-block {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(82, 110, 254, 0.03));
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    margin-top: 2rem;
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.15);
}

.quote-block blockquote {
    margin: 0;
    padding: 0;
}

.quote-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.quote-block p:last-child {
    margin-bottom: 0;
}

.quote-author {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bleu-violet), var(--bleu-clair));
    color: var(--blanc);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.15);
}

.author-name h4 {
    font-size: 1.2rem;
    color: var(--noir);
    margin: 0 0 0.3rem 0;
}

.author-name span {
    font-size: 0.95rem;
    color: #666;
}

.team-mission {
    text-align: center;
    margin-top: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.05);
    border-top: 3px solid var(--bleu-violet);
}

.mission-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bleu-violet);
    margin-bottom: 1rem;
}

.mission-statement {
    font-size: 1.5rem;
    color: var(--noir);
    font-weight: 600;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .team-intro {
        padding: 5rem 0;
    }
    
    .team-content {
        padding: 2.5rem;
    }
    
    .quote-block {
        padding: 2.5rem;
    }
    
    .team-text p {
        font-size: 1.2rem;
    }
    
    .mission-statement {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .team-content {
        padding: 2rem;
    }
    
    .quote-block {
        padding: 2rem;
    }
    
    .team-text p {
        font-size: 1.1rem;
    }
    
    .quote-block p {
        font-size: 1rem;
    }
    
    .mission-statement {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .team-content {
        padding: 1.5rem;
    }
    
    .quote-block {
        padding: 1.5rem;
    }
    
    .team-text p {
        font-size: 1rem;
    }
    
    .story-header span {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .author-name h4 {
        font-size: 1.1rem;
    }
    
    .mission-label {
        font-size: 1.2rem;
    }
    
    .mission-statement {
        font-size: 1.2rem;
    }
}

/* Team Members Section */
.team-members-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fcfcff 100%);
    position: relative;
    overflow: hidden;
}

.team-members-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.team-members-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(82, 110, 254, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.team-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.member-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(8, 21, 66, 0.05);
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(8, 21, 66, 0.08);
}

.member-role {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.direction .member-role {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(138, 43, 226, 0.05));
    border-right: 3px solid rgba(138, 43, 226, 0.2);
}

.commercial .member-role {
    background: linear-gradient(135deg, rgba(82, 110, 254, 0.1), rgba(82, 110, 254, 0.05));
    border-right: 3px solid rgba(82, 110, 254, 0.2);
}

.drivers .member-role {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(65, 105, 225, 0.05));
    border-right: 3px solid rgba(65, 105, 225, 0.2);
}

.role-emoji {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.role-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--noir);
    white-space: normal;
    width: 100%;
    word-wrap: break-word;
    line-height: 1.3;
}

.member-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.member-name-title {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.member-name-title h3 {
    font-size: 1.6rem;
    color: var(--noir);
    margin-bottom: 0.5rem;
}

.member-name-title span {
    font-size: 1.05rem;
    color: #666;
    font-style: italic;
}

.member-bio {
    line-height: 1.8;
}

.member-bio p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.member-bio p:last-child {
    margin-bottom: 0;
}

.member-contact {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(138, 43, 226, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-text {
    font-size: 1rem;
    color: #4a5568;
}

@media (max-width: 992px) {
    .member-card {
        flex-direction: column;
    }
    
    .member-role {
        width: 100%;
        padding: 2rem 1.5rem;
        flex-direction: row;
        gap: 1.5rem;
        border-right: none !important;
        border-bottom: 3px solid rgba(138, 43, 226, 0.2);
    }
    
    .commercial .member-role {
        border-bottom: 3px solid rgba(82, 110, 254, 0.2);
    }
    
    .drivers .member-role {
        border-bottom: 3px solid rgba(65, 105, 225, 0.2);
    }
    
    .role-emoji {
        margin-bottom: 0;
        font-size: 2rem;
    }
    
    .member-info {
        padding: 2rem;
    }
    
    .member-name-title h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-members-section {
        padding: 5rem 0;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .member-name-title {
        padding-bottom: 1rem;
    }
    
    .member-name-title h3 {
        font-size: 1.4rem;
    }
    
    .member-bio p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .member-role {
        padding: 1.5rem 1rem;
    }
    
    .role-emoji {
        font-size: 1.8rem;
    }
    
    .role-title {
        font-size: 1rem;
    }
    
    .member-info {
        padding: 1.2rem;
    }
    
    .member-name-title h3 {
        font-size: 1.3rem;
    }
    
    .member-name-title span {
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 0.7rem 1rem;
        width: 100%;
    }
}

/* Destinations Showcase */
.destinations-showcase {
    padding: 7rem 0;
    background: linear-gradient(145deg, #fcfcff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.destinations-showcase::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.destinations-showcase::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(82, 110, 254, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
}

.destination-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(8, 21, 66, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid transparent;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(8, 21, 66, 0.08);
}

.destination-card:hover::before {
    opacity: 1;
}

.france {
    border-top-color: rgba(0, 87, 184, 0.8);
}

.attractions {
    border-top-color: rgba(255, 105, 97, 0.8);
}

.museums {
    border-top-color: rgba(119, 139, 235, 0.8);
}

.events {
    border-top-color: rgba(255, 186, 73, 0.8);
}

.schools {
    border-top-color: rgba(46, 196, 182, 0.8);
}

.beaches {
    border-top-color: rgba(83, 144, 217, 0.8);
}

.destination-card .destination-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f2f3f5 0%, #e5e7f0 100%);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.destination-card:hover .destination-icon {
    transform: scale(1.1);
}

.france .destination-icon {
    background: linear-gradient(135deg, rgba(0, 87, 184, 0.1) 0%, rgba(0, 87, 184, 0.05) 100%);
}

.attractions .destination-icon {
    background: linear-gradient(135deg, rgba(255, 105, 97, 0.1) 0%, rgba(255, 105, 97, 0.05) 100%);
}

.museums .destination-icon {
    background: linear-gradient(135deg, rgba(119, 139, 235, 0.1) 0%, rgba(119, 139, 235, 0.05) 100%);
}

.events .destination-icon {
    background: linear-gradient(135deg, rgba(255, 186, 73, 0.1) 0%, rgba(255, 186, 73, 0.05) 100%);
}

.schools .destination-icon {
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.1) 0%, rgba(46, 196, 182, 0.05) 100%);
}

.beaches .destination-icon {
    background: linear-gradient(135deg, rgba(83, 144, 217, 0.1) 0%, rgba(83, 144, 217, 0.05) 100%);
}

.destination-card .destination-icon i {
    font-size: 2rem;
    color: var(--noir);
    transition: all 0.4s ease;
}

.france .destination-icon i {
    color: rgba(0, 87, 184, 0.9);
}

.attractions .destination-icon i {
    color: rgba(255, 105, 97, 0.9);
}

.museums .destination-icon i {
    color: rgba(119, 139, 235, 0.9);
}

.events .destination-icon i {
    color: rgba(255, 186, 73, 0.9);
}

.schools .destination-icon i {
    color: rgba(46, 196, 182, 0.9);
}

.beaches .destination-icon i {
    color: rgba(83, 144, 217, 0.9);
}

.destination-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--noir);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.destination-card p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.destination-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8a2be2 0%, #526efe 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(82, 110, 254, 0.2);
    z-index: 3;
}

.destinations-cta {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.btn-destinations {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--noir);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(139, 44, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-destinations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #8a2be2 0%, #526efe 100%);
    z-index: -1;
    transition: all 0.5s ease;
}

.btn-destinations span {
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.btn-destinations i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-destinations:hover {
    color: #fff;
    border-color: transparent;
}

.btn-destinations:hover::before {
    width: 100%;
}

.btn-destinations:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .destinations-grid {
        gap: 2rem;
    }
    
    .destination-card {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .destinations-showcase {
        padding: 5rem 0;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .destination-card h3 {
        font-size: 1.4rem;
    }
    
    .destination-card p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .destinations-showcase {
        padding: 4rem 0;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .destination-icon {
        width: 70px;
        height: 70px;
    }
    
    .destination-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .destination-card {
        padding: 1.8rem;
    }
    
    .destination-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    
    .destination-icon i {
        font-size: 1.5rem;
    }
    
    .destination-card h3 {
        font-size: 1.3rem;
    }
    
    .destination-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .btn-destinations {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #fcfcff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(82, 110, 254, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 3.5rem auto 0;
    position: relative;
    z-index: 2;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(8, 21, 66, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(8, 21, 66, 0.07);
    transform: translateY(-3px);
}

.faq-question {
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #8a2be2 0%, #526efe 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::before,
.faq-question:hover::before {
    opacity: 1;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--noir);
    transition: all 0.3s ease;
    padding-right: 2rem;
}

.faq-toggle {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-toggle i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.2rem;
    color: #8a2be2;
    transition: all 0.3s ease;
}

.faq-toggle .fa-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-toggle .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-toggle .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle .fa-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

.faq-item.active .faq-answer {
    height: auto;
    padding: 0 2rem 1.8rem;
}

.faq-answer p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding: 2rem;
    background: rgba(138, 43, 226, 0.03);
    border-radius: 16px;
}

.faq-cta p {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--noir);
    margin-bottom: 1.2rem;
}

.btn-faq {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #8a2be2 0%, #526efe 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(82, 110, 254, 0.15);
}

.btn-faq span {
    margin-right: 0.8rem;
}

.btn-faq i {
    transition: transform 0.3s ease;
}

.btn-faq:hover {
    box-shadow: 0 15px 25px rgba(82, 110, 254, 0.25);
    transform: translateY(-3px);
}

.btn-faq:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .faq-section {
        padding: 5rem 0;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.15rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-container {
        margin-top: 2.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 1.5rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    .faq-cta {
        margin-top: 2.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-toggle {
        width: 20px;
        height: 20px;
    }
    
    .faq-toggle i {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .btn-faq {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #fcfcff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(82, 110, 254, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.contact-container {
    display: flex;
    align-items:flex-start;
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

textarea {
    resize: vertical;
}

.contact-info {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(8, 21, 66, 0.05);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #8a2be2, #526efe);
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(82, 110, 254, 0.1));
}

.info-icon i {
    font-size: 1.5rem;
    color: #8a2be2;
}

.info-header h2 {
    font-size: 1.8rem;
    color: var(--noir);
    font-weight: 700;
    margin: 0;
}

.info-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 12px;
    background: rgba(138, 43, 226, 0.03);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    background: rgba(138, 43, 226, 0.05);
}

.emergency {
    background: rgba(255, 76, 76, 0.03);
}

.emergency:hover {
    background: rgba(255, 76, 76, 0.05);
}

.emergency .method-icon i {
    color: #ff4c4c;
}

.method-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 6px 15px rgba(138, 43, 226, 0.1);
}

.method-icon i {
    font-size: 1.2rem;
    color: #8a2be2;
}

.method-details h3 {
    font-size: 1.15rem;
    color: var(--noir);
    margin: 0 0 0.5rem;
}

.method-details p {
    font-size: 1.05rem;
    color: #526efe;
    font-weight: 500;
    margin: 0 0 0.25rem;
}

.method-note {
    font-size: 0.9rem;
    color: #6b7280;
    display: block;
}

.contact-outro {
    text-align: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(82, 110, 254, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.contact-outro p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--noir);
    margin: 0;
}

.outro-star {
    font-size: 1.3rem;
    display: inline-block;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-form-container {
    flex: 1.3;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(8, 21, 66, 0.05);
    padding: 2.5rem;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 1.8rem;
    color: var(--noir);
    margin: 0 0 0.7rem;
    position: relative;
    display: inline-block;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #526efe);
    border-radius: 3px;
}

.form-header p {
    font-size: 1.05rem;
    color: #6b7280;
    margin: 1.5rem 0 0;
}

.devis-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section h3 {
    font-size: 1.25rem;
    color: var(--noir);
    margin: 0;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.full-width {
    width: 100%;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--noir);
    background: #fff;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8a2be2;
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-direction: row;
    margin-top: 1rem;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: #8a2be2;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 400;
}

.checkbox-group a {
    color: #8a2be2;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.checkbox-group a:hover {
    color: #526efe;
}

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #8a2be2 0%, #526efe 100%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(82, 110, 254, 0.25);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(82, 110, 254, 0.3);
}

.btn-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.form-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 1200px) {
    .contact-container {
        gap: 2.5rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 5rem 0;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-form-container {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-header h2,
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .method-icon {
        width: 38px;
        height: 38px;
    }
    
    .method-details h3 {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .info-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-header h2,
    .form-header h2 {
        font-size: 1.4rem;
    }
    
    .contact-outro p {
        font-size: 1.05rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* Legal Section */
.legal-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #fcfcff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.legal-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(82, 110, 254, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.legal-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(82, 110, 254, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.legal-header-icon i {
    font-size: 2.5rem;
    color: #8a2be2;
}

.legal-header h2 {
    font-size: 2.2rem;
    color: var(--noir);
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.legal-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #526efe);
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

.legal-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 650px;
    margin: 0 auto;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.legal-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(8, 21, 66, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(8, 21, 66, 0.08);
}

.legal-card-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.04), rgba(82, 110, 254, 0.04));
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(138, 43, 226, 0.1);
}

.card-icon i {
    font-size: 1.5rem;
    color: #8a2be2;
}

.legal-card-header h3 {
    font-size: 1.4rem;
    color: var(--noir);
    margin: 0;
    font-weight: 700;
}

.legal-card-content {
    padding: 2rem;
}

.legal-card-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 1rem;
}

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

.legal-card-content a {
    color: #8a2be2;
    transition: all 0.3s ease;
}

.legal-card-content a:hover {
    color: #526efe;
    text-decoration: underline;
}

.legal-section-divider {
    height: 2px;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.1), rgba(82, 110, 254, 0.1));
    margin: 2rem 0;
    border-radius: 3px;
}

.legal-article {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(8, 21, 66, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
}

.legal-article:hover {
    box-shadow: 0 20px 50px rgba(8, 21, 66, 0.08);
}

.legal-article h3 {
    font-size: 1.3rem;
    color: var(--noir);
    margin: 0 0 1.5rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    position: relative;
}

.legal-article h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #526efe);
    border-radius: 3px;
}

.article-content {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.article-content p {
    margin: 0 0 1.2rem;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.article-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    position: relative;
}

.article-content li::before {
    content: '';
    position: absolute;
    left: -1.2rem;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(90deg, #8a2be2, #526efe);
}

.article-content strong {
    color: #2d3748;
    font-weight: 600;
}

.article-content a {
    color: #8a2be2;
    transition: all 0.3s ease;
}

.article-content a:hover {
    color: #526efe;
    text-decoration: underline;
}

.legal-date {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), rgba(82, 110, 254, 0.03));
    border-radius: 12px;
}

.legal-date p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    font-style: italic;
}

@media (max-width: 992px) {
    .legal-section {
        padding: 5rem 0;
    }
    
    .legal-header h2 {
        font-size: 2rem;
    }
    
    .legal-header-icon {
        width: 70px;
        height: 70px;
    }
    
    .legal-header-icon i {
        font-size: 2rem;
    }
    
    .legal-card-header {
        padding: 1.2rem 1.5rem;
    }
    
    .legal-card-content,
    .legal-article {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .legal-section {
        padding: 4rem 0;
    }
    
    .legal-header {
        margin-bottom: 3rem;
    }
    
    .legal-header h2 {
        font-size: 1.8rem;
    }
    
    .legal-header p {
        font-size: 1rem;
    }
    
    .legal-content {
        gap: 2rem;
    }
    
    .legal-card-header h3 {
        font-size: 1.3rem;
    }
    
    .legal-article h3 {
        font-size: 1.2rem;
    }
    
    .legal-card-content p,
    .article-content {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .legal-section {
        padding: 3rem 0;
    }
    
    .legal-header-icon {
        width: 60px;
        height: 60px;
    }
    
    .legal-header-icon i {
        font-size: 1.7rem;
    }
    
    .legal-header h2 {
        font-size: 1.6rem;
    }
    
    .legal-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .legal-card-header h3 {
        font-size: 1.2rem;
    }
    
    .legal-article h3 {
        font-size: 1.1rem;
    }
    
    .legal-card-content,
    .legal-article {
        padding: 1.2rem;
    }
}

/* Normalisation des formulaires pour tous les navigateurs */
input,
textarea,
select,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.5rem;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Styles spécifiques pour Safari */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
textarea,
select {
    -webkit-appearance: none;
    -webkit-border-radius: 0.5rem;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    box-shadow: none;
    padding: 0.75rem 1rem;
    width: 100%;
}

/* Focus styles */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

/* Styles pour les checkbox */
input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    height: 16px;
    width: 16px;
    margin-right: 8px;
}

/* Correction des boutons sur mobile */
button,
.btn-submit {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    cursor: pointer;
}

/* Éliminer l'ombre interne sur iOS */
input,
textarea {
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Correction pour les inputs date et time sur iOS */
input[type="date"],
input[type="time"] {
    min-height: 44px; /* Hauteur minimum pour faciliter le tap sur mobile */
    max-height: 44px;
    line-height: normal;
}
