/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: 0 32px;
    margin-top: -80px;
}

/* Badge disponibilité */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 113, 230, 0.12);
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.dot-container {
    position: relative;
    width: 8px;
    height: 8px;
}

.dot-green {
    width: 8px;
    height: 8px;
    background-color: rgb(111, 255, 59);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 1px 0px inset;
}

.dot-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: rgb(111, 255, 59);
    border-radius: 50%;
    filter: blur(2px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.4; }
}

.availability-badge svg {
    color: #4ABDFB;
    flex-shrink: 0;
}

.availability-badge span {
    color: rgb(34, 32, 32);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2em;
}

.availability-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(52, 113, 230, 0.15), 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Titres */
.hero-content h1 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.02em;
    letter-spacing: -0.08em;
    color: rgb(34, 32, 32);
    margin: 0 0 32px 0;
}

.hero-content h1 .highlight-text {
    font-family: "Instrument Serif", "Instrument Serif Placeholder", serif;
    font-size: 60px;
    font-style: italic;
    letter-spacing: -0.02em;
    color: #4ABDFB;
}

.hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: rgb(102, 102, 102);
    max-width: 800px;
    margin: 0 auto 48px auto;
}

/* Boutons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 16px;
    text-decoration: none;
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(181deg, #5a94f0 0%, #4ABDFB 48%);
    color: rgb(255, 255, 255);
    border: 1px solid #4ABDFB;
    box-shadow: rgba(52, 113, 230, 0.28) 0px 0.6px 0.6px -0.9px, 
                rgba(52, 113, 230, 0.27) 0px 2.3px 2.3px -1.8px, 
                rgba(52, 113, 230, 0.23) 0px 10px 10px -2.75px;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s;
}

.hero-btn-primary:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.hero-btn-primary:hover {
    transform: scale(1.02);
    box-shadow: rgba(52, 113, 230, 0.4) 0px 1px 1px -0.9px, 
                rgba(52, 113, 230, 0.35) 0px 4px 4px -1.8px, 
                rgba(52, 113, 230, 0.3) 0px 15px 15px -2.75px;
}

.hero-btn-primary svg {
    width: 20px;
    height: 20px;
}

.hero-btn-whatsapp {
    background: rgb(255, 255, 255);
    color: rgb(37, 211, 102);
    border: 1px solid rgb(230, 230, 230);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px;
}

.hero-btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: rgb(37, 211, 102);
}

.hero-btn-whatsapp:hover {
    background: rgb(37, 211, 102);
    border-color: rgb(37, 211, 102);
    color: rgb(255, 255, 255);
    transform: translateY(-2px);
    box-shadow: rgba(37, 211, 102, 0.3) 0px 4px 12px;
}

.hero-btn-whatsapp:hover svg {
    fill: rgb(255, 255, 255);
}

/* Section Confiance (dans le hero) */
.trust-section {
    margin-top: 60px;
}

/* Trust Rating Bar - Style Compact */
.trust-rating-bar {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.trust-avatars-stack {
    display: flex;
    align-items: center;
}

.trust-avatar-item {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.trust-avatar-item:first-child {
    margin-left: 0;
}

.trust-separator {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.12);
}

.trust-count {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgb(34, 32, 32);
    margin: 0;
    white-space: nowrap;
}

.trust-rating-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-rating-number {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgb(34, 32, 32);
}

.trust-rating-stars {
    display: flex;
    gap: 1px;
}

.trust-rating-stars span {
    color: rgb(235, 161, 0);
    font-size: 12px;
}

@media (max-width: 640px) {
    .trust-rating-bar {
        gap: 10px;
        padding: 8px 14px;
    }
    
    .trust-avatar-item {
        width: 24px;
        height: 24px;
        font-size: 9px;
        margin-left: -6px;
    }
    
    .trust-separator {
        height: 16px;
    }
    
    .trust-count,
    .trust-rating-number {
        font-size: 12px;
    }
    
    .trust-rating-stars span {
        font-size: 10px;
    }
}

/* Old logos slider (kept for compatibility) */
.trust-title {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 22px;
    color: rgb(141, 141, 141);
    margin-bottom: 32px;
}

.logos-slider {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}

.logos-track {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); }
}

.logo-item {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.3s;
    width: 140px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item:hover {
    opacity: 0.8;
}

.logo-item img {
    max-height: 50px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

/* Logos plus petits */
.logo-item img[src*="letransporteur3-0"],
.logo-item img[src*="awmotors"],
.logo-item img[src*="amarinte"] {
    max-height: 35px;
    max-width: 100px;
}

.logo-item:hover img {
    filter: grayscale(50%);
}

/* Section SEO Modern */
.seo-modern-section {
    padding: 40px 24px;
    background-color: rgb(34, 32, 32);
    color: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
}

.seo-modern-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.seo-modern-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: center;
}

/* Colonne Gauche - Stats */
.seo-visual-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seo-stat-card {
    background: linear-gradient(135deg, rgb(51, 51, 51), rgb(43, 43, 43));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.seo-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 113, 230, 0.1), transparent);
    transition: left 0.6s ease;
}

.seo-stat-card:hover::before {
    left: 100%;
}

.seo-stat-card:hover {
    transform: translateX(8px);
    border-color: rgba(52, 113, 230, 0.4);
    box-shadow: rgba(52, 113, 230, 0.3) 0px 8px 24px;
}

.stat-number {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #5a94f0, #4ABDFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    line-height: 1.4;
}

/* Colonne Droite - Contenu */
.seo-content-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.seo-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(52, 113, 230, 0.15);
    border: 1px solid rgba(52, 113, 230, 0.3);
    color: #5a94f0;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.seo-modern-title {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.1;
    color: rgb(255, 255, 255);
    margin: 0;
}

.seo-text-block p {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.seo-text-block strong {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.seo-services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.seo-service-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.seo-service-item svg {
    flex-shrink: 0;
    color: #4ABDFB;
    margin-top: 2px;
}

.seo-service-item span {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.seo-service-item strong {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.keyword-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 14px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.keyword-tag:hover {
    background: rgba(52, 113, 230, 0.15);
    border-color: rgba(52, 113, 230, 0.4);
    color: #5a94f0;
    transform: translateY(-2px);
}

/* Responsive SEO Modern */
@media (max-width: 1024px) {
    .seo-modern-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .seo-visual-side {
        flex-direction: row;
        justify-content: space-between;
    }

    .seo-stat-card {
        flex: 1;
        padding: 24px 20px;
    }

    .stat-number {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .seo-modern-section {
        padding: 80px 24px;
    }

    .seo-modern-title {
        font-size: 17px;
    }

    .seo-visual-side {
        flex-direction: column;
    }

    .seo-text-block p {
        font-size: 16px;
    }

    .seo-service-item span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .seo-modern-section {
        padding: 60px 20px;
    }

    .seo-modern-title {
        font-size: 26px;
    }

    .stat-number {
        font-size: 15px;
    }

    .stat-label {
        font-size: 12px;
    }
}

/* Section SEO Content OLD (à garder au cas où) */
.seo-content-section {
    padding: 40px 24px;
    background: linear-gradient(135deg, rgb(248, 250, 255) 0%, rgb(255, 255, 255) 50%, rgb(250, 252, 255) 100%);
    border-top: 2px solid rgba(52, 113, 230, 0.15);
    border-bottom: 2px solid rgba(52, 113, 230, 0.15);
    position: relative;
    overflow: hidden;
}

.seo-content-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 113, 230, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.seo-content-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(150, 185, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.seo-content-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.seo-content-section h2 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.2;
    color: rgb(34, 32, 32);
    margin: 0 0 16px 0;
    text-align: center;
    background: linear-gradient(135deg, rgb(34, 32, 32) 0%, #4ABDFB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-content-section p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgb(84, 84, 84);
    margin: 0 0 20px 0;
    text-align: justify;
}

.seo-content-section p strong {
    color: rgb(34, 32, 32);
    font-weight: 600;
}

.seo-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.seo-badge {
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(250, 252, 255) 100%);
    padding: 24px 28px;
    border-radius: 16px;
    border: 2px solid rgba(52, 113, 230, 0.2);
    box-shadow: rgba(52, 113, 230, 0.08) 0px 4px 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.seo-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 113, 230, 0.1), transparent);
    transition: left 0.6s ease;
}

.seo-badge:hover::before {
    left: 100%;
}

.seo-badge:hover {
    transform: translateY(-6px);
    box-shadow: rgba(52, 113, 230, 0.25) 0px 8px 24px;
    border-color: rgba(52, 113, 230, 0.4);
}

.seo-badge strong {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #4ABDFB;
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.seo-badge span {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: rgb(102, 102, 102);
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive SEO Section */
@media (max-width: 768px) {
    .seo-content-section {
        padding: 80px 24px;
    }

    .seo-content-section h2 {
        font-size: 17px;
    }

    .seo-content-section p {
        font-size: 15px;
        text-align: left;
    }

    .seo-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seo-badge {
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .seo-content-section {
        padding: 60px 20px;
    }

    .seo-content-section h2 {
        font-size: 26px;
    }

    .seo-content-section p {
        font-size: 14px;
    }

    .seo-badge strong {
        font-size: 14px;
    }

    .seo-badge span {
        font-size: 12px;
    }
}

/* Bouton WhatsApp Flottant */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: rgb(37, 211, 102);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(37, 211, 102, 0.4) 0px 4px 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: rgba(37, 211, 102, 0.6) 0px 6px 20px;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Section Expertises - Sticky Scroll Replace Effect */
.features-section {
    padding: 80px 32px 40px;
    background-color: rgb(255, 255, 255);
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.features-heading {
    text-align: center;
    margin-bottom: 20px;
}

.features-heading h2 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: rgb(34, 32, 32);
    margin: 0 0 12px 0;
}

.features-heading p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: rgb(102, 102, 102);
    max-width: 550px;
    margin: 0 auto;
}

/* Features Stack Wrapper - Scroll Reveal */
.features-stack-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-stack-card {
    position: relative;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: transform, opacity;
}

.feature-stack-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card-link {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    background: rgb(251, 251, 251);
    border: 1px solid rgb(237, 237, 237);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    min-height: 320px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 30px;
    transition: all 0.4s ease;
}

.feature-card-link:hover {
    border-color: rgba(52, 113, 230, 0.4);
    box-shadow: rgba(52, 113, 230, 0.2) 0px 16px 50px;
}

.feature-card-inner {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.feature-card-text h3 {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgb(34, 32, 32);
    margin: 0 0 10px 0;
}

.feature-card-text p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgb(102, 102, 102);
    margin: 0 0 16px 0;
    max-width: 450px;
}

.feature-card-cta {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.feature-card-cta span {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgb(34, 32, 32);
}

.cta-line {
    height: 2px;
    background: rgb(34, 32, 32);
    width: 100%;
    transition: all 0.3s ease;
}

.feature-card-link:hover .cta-line {
    background: #4ABDFB;
}

.feature-card-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgb(34, 32, 32);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px;
    flex-shrink: 0;
}

.feature-card-badge span {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgb(243, 243, 243);
}

.feature-card-badge svg {
    color: rgb(243, 243, 243);
}

.feature-card-points {
    display: flex;
    gap: 25px;
}

.points-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgb(34, 32, 32);
}

.point-item svg {
    color: #4ABDFB;
    flex-shrink: 0;
}

.feature-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(240, 245, 255) 0%, rgb(220, 230, 250) 100%);
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card-link:hover .feature-card-image img {
    transform: scale(1.05);
}

/* Responsive Expertises */
@media (max-width: 1024px) {
    .features-stack-wrapper {
        gap: 24px;
    }

    .feature-card-link {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .feature-card-image {
        height: 200px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .features-heading h2 {
        font-size: 30px;
    }

    .feature-card-inner {
        padding: 24px;
    }

    .feature-card-text h3 {
        font-size: 20px;
    }

    .feature-card-points {
        flex-direction: column;
        gap: 16px;
    }

    .feature-card-content {
        flex-direction: column;
    }

    .feature-card-badge {
        align-self: flex-start;
    }
}


/* Section Projets */
.projects-section {
    padding: 40px 24px;
    background-color: rgb(255, 255, 255);
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
}

.projects-heading {
    text-align: center;
    margin-bottom: 30px;
}

.projects-heading h2 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: rgb(34, 32, 32);
    margin: 0 0 12px 0;
}

.projects-heading p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: rgb(102, 102, 102);
    max-width: 800px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.project-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 22px;
    overflow: hidden;
    background-color: rgb(191, 210, 255);
    border: 8px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    height: 520px;
    opacity: 0;
    transform: translateY(60px);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card.project-hidden {
    display: none;
}

/* Layout asymétrique */
.project-card:nth-child(1) {
    grid-column: span 6;
}

.project-card:nth-child(2) {
    grid-column: span 6;
}

.project-card:nth-child(3) {
    grid-column: span 7;
}

.project-card:nth-child(4) {
    grid-column: span 5;
}

.project-card:nth-child(5) {
    grid-column: span 5;
}

.project-card:nth-child(6) {
    grid-column: span 7;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(52, 113, 230, 0.3) 0px 16px 48px;
}

.project-card.visible:hover {
    transform: translateY(-8px);
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    pointer-events: none;
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 10;
}

.project-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.project-tag {
    display: inline-block;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    letter-spacing: -0.01em;
    color: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
}

.project-description h3 {
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 32px;
    color: rgb(255, 255, 255);
    margin: 0 0 8px 0;
}

.project-description p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 24px;
    color: rgb(255, 255, 255);
    margin: 0;
}

/* Projects CTA */
.projects-cta {
    text-align: center;
    margin-top: 48px;
}

.projects-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(180deg, rgb(51, 51, 51) 34%, rgb(34, 32, 32) 100%);
    color: rgb(243, 243, 243);
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 4px 0px, rgba(0, 0, 0, 0.5) 0px -2px 4px 0px inset;
}

.projects-btn:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 8px 0px, rgba(0, 0, 0, 0.5) 0px -2px 4px 0px inset;
}

.projects-btn svg {
    transition: transform 0.3s ease;
}

.projects-btn:hover svg {
    transform: translate(4px, -4px);
}

/* Projects Loader */
.projects-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.projects-loader.active {
    opacity: 1;
}

.loader-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.loader-dots span {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #4ABDFB, #5a94f0);
    border-radius: 50%;
    animation: loaderBounce 1.4s ease-in-out infinite both;
}

.loader-dots span:nth-child(1) { animation-delay: -0.32s; }
.loader-dots span:nth-child(2) { animation-delay: -0.16s; }
.loader-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes loaderBounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.projects-loader p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgb(102, 102, 102);
    margin: 0;
}

/* Section Avis Google */
.reviews-section {
    padding: 40px 24px;
    background: linear-gradient(180deg, rgb(250, 252, 255) 0%, rgb(255, 255, 255) 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/head_carreaux.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.reviews-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-heading {
    margin-bottom: 25px;
}

.reviews-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-heading h2 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: rgb(34, 32, 32);
    margin: 0 0 12px 0;
}

.reviews-heading p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: rgb(102, 102, 102);
    margin: 0;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 16px;
}

.google-logo {
    width: 32px;
    height: 32px;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 17px;
    color: rgb(230, 230, 230);
}

.star.filled {
    color: rgb(251, 188, 4);
}

.rating-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgb(34, 32, 32);
}

/* Carousel */
.reviews-carousel {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 8%, rgb(0, 0, 0) 92%, rgba(0, 0, 0, 0) 100%);
}

.reviews-track {
    display: flex;
    gap: 24px;
    animation: reviewsScroll 40s linear infinite;
    width: fit-content;
}

@keyframes reviewsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); }
}

.reviews-track:hover {
    animation-play-state: paused;
}

/* Review Card */
.review-card {
    flex-shrink: 0;
    width: 340px;
    padding: 24px;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    border: 1px solid rgb(240, 240, 240);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 8px;
    transition: all 0.3s ease;
}


.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #5a94f0 0%, #4ABDFB 100%);
}

.review-author h4 {
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgb(34, 32, 32);
    margin: 0 0 4px 0;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    font-size: 14px;
}

.review-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(84, 84, 84);
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-text.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.review-see-more {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #4ABDFB;
    cursor: pointer;
    margin-bottom: 12px;
    display: none;
}

.review-see-more:hover {
    text-decoration: underline;
}

.review-card.has-long-text .review-see-more {
    display: block;
}

.review-date {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: rgb(141, 141, 141);
}

.review-stars-small .star {
    font-size: 12px;
}

/* Section Comparaison */
.comparison-section {
    position: relative;
    padding: 40px 24px;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/head_carreaux.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.comparison-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-heading {
    text-align: center;
    margin-bottom: 30px;
}

.comparison-heading h2 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: rgb(34, 32, 32);
    margin: 0 0 12px 0;
}

.comparison-heading p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: rgb(102, 102, 102);
    max-width: 700px;
    margin: 0 auto;
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border: 1px solid rgb(237, 237, 237);
    border-radius: 24px;
    overflow: hidden;
}

.comparison-column {
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
}

.comparison-us {
    background-color: rgb(251, 251, 251);
}

.comparison-others {
    background-color: rgb(255, 255, 255);
}

.comparison-column h3 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgb(34, 32, 32);
    margin: 0 0 32px 0;
    text-align: center;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
    margin-bottom: 20px;
}

.comparison-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon,
.cross-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-point p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgb(84, 84, 84);
    margin: 0;
}

.comparison-btn {
    display: block;
    width: 100%;
    padding: 16px 28px;
    border-radius: 12px;
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.comparison-btn-active {
    background: linear-gradient(180deg, rgb(51, 51, 51) 34%, rgb(34, 32, 32) 100%);
    color: rgb(243, 243, 243);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 4px 0px, rgba(0, 0, 0, 0.5) 0px -2px 4px 0px inset;
}

.comparison-btn-active:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 8px 0px, rgba(0, 0, 0, 0.5) 0px -2px 4px 0px inset;
}

.comparison-btn-disabled {
    background: linear-gradient(rgb(86, 86, 86) 39%, rgb(68, 68, 68) 100%);
    color: rgb(157, 157, 157);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 4px 0px, rgba(0, 0, 0, 0.5) 0px -2px 4px 0px inset;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Section FAQ */
.faq-section {
    padding: 35px 24px;
    background-color: rgb(255, 255, 255);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    margin-bottom: 20px;
}

.faq-label {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4ABDFB;
    margin: 0 0 12px 0;
}

.faq-heading h2 {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: rgb(34, 32, 32);
    margin: 0 0 20px 0;
}

.faq-separator {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4ABDFB 0%, #5a94f0 100%);
    border-radius: 2px;
    margin: 0 auto;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 22px;
    color: rgb(34, 32, 32);
    margin: 0;
}

.author-title {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 22px;
    color: rgb(84, 84, 84);
    margin: 0;
}

.faq-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-text {
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 26px;
    color: rgb(0, 0, 0);
    margin: 0;
}

.faq-btn {
    display: block;
    padding: 16px 28px;
    border-radius: 12px;
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-btn-primary {
    background: linear-gradient(180deg, rgb(51, 51, 51) 34%, rgb(34, 32, 32) 100%);
    color: rgb(243, 243, 243);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 4px 0px, rgba(0, 0, 0, 0.5) 0px -2px 4px 0px inset;
}

.faq-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 8px 0px, rgba(0, 0, 0, 0.5) 0px -2px 4px 0px inset;
}

.faq-btn-secondary {
    background: linear-gradient(180deg, rgb(243, 243, 243) 0%, rgb(222, 222, 222) 100%);
    color: rgb(34, 32, 32);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 4px 0px, rgba(0, 0, 0, 0.12) 0px -2px 4px 0px inset;
}

.faq-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 8px 0px, rgba(0, 0, 0, 0.12) 0px -2px 4px 0px inset;
}

.or-text {
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 22px;
    color: rgb(0, 0, 0);
    text-align: center;
    margin: 0;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: rgb(251, 251, 251);
    border: 1px solid rgb(237, 237, 237);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
}

.faq-item[open] {
    background-color: rgb(251, 251, 251);
    border-color: rgba(52, 113, 230, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    gap: 20px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question span {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 26px;
    color: rgb(34, 32, 32);
}

.faq-icon {
    flex-shrink: 0;
    color: rgb(102, 102, 102);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding-top: 16px;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgb(84, 84, 84);
    margin: 0;
}

.faq-answer a {
    color: #4ABDFB;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: rgb(51, 110, 227);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Formations - Sticky Scroll Replace */
.formations-section {
    padding: 80px 32px 40px;
    background-color: rgb(243, 243, 243);
}

.formations-container {
    max-width: 1100px;
    margin: 0 auto;
}

.formations-heading {
    text-align: center;
    margin-bottom: 20px;
}

.formations-heading h2 {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: rgb(34, 32, 32);
    margin: 0 0 12px 0;
}

.formations-heading p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgb(102, 102, 102);
    max-width: 500px;
    margin: 0 auto;
}

/* Formations Layout - 2 colonnes */
.formations-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 25px;
}

/* Sidebar Navigation - Sticky */
.formations-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: start;
}

.training-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.training-nav li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.training-nav li:hover {
    background: rgba(255, 255, 255, 0.5);
}

.training-nav li.active {
    background: rgb(255, 255, 255);
    box-shadow: rgba(52, 113, 230, 0.1) 0px 4px 20px;
}

.nav-indicator {
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: rgb(200, 200, 200);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.training-nav li.active .nav-indicator {
    background: linear-gradient(180deg, #4ABDFB 0%, #5a94f0 100%);
    height: 28px;
}

.nav-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(102, 102, 102);
    transition: color 0.3s ease;
    line-height: 1.4;
}

.training-nav li.active .nav-text {
    color: rgb(34, 32, 32);
    font-weight: 600;
}

/* Formations Content - Right Column - Scroll Reveal */
.formations-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.training-item {
    position: relative;
    scroll-margin-top: 100px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: transform, opacity;
}

.training-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.training-card {
    display: flex;
    flex-direction: column;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(230, 230, 230);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 30px;
    transition: all 0.4s ease;
}

.training-card:hover {
    box-shadow: rgba(52, 113, 230, 0.2) 0px 16px 50px;
    border-color: rgba(52, 113, 230, 0.3);
    transform: translateY(-4px);
}

.training-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.training-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.training-badge {
    padding: 5px 12px;
    border-radius: 16px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.training-badge.populaire {
    background: linear-gradient(135deg, #5a94f0 0%, #4ABDFB 100%);
    color: white;
}

.training-badge.pro {
    background: linear-gradient(135deg, rgb(168, 85, 247) 0%, rgb(139, 92, 246) 100%);
    color: white;
}

.training-badge.essentiel {
    background: linear-gradient(135deg, rgb(16, 185, 129) 0%, rgb(5, 150, 105) 100%);
    color: white;
}

.training-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: rgb(102, 102, 102);
}

.training-duration svg {
    color: rgb(141, 141, 141);
}

.training-card-content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgb(34, 32, 32);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.training-card-content > p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgb(102, 102, 102);
    margin: 0 0 20px 0;
}

.training-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.training-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgb(68, 68, 68);
    line-height: 1.5;
    padding: 8px 0;
}

.training-features li svg {
    color: #4ABDFB;
    flex-shrink: 0;
    margin-top: 2px;
}

.training-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgb(52, 113, 230) 0%, rgb(90, 148, 240) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: rgba(52, 113, 230, 0.3) 0px 4px 15px;
    margin-top: auto;
    align-self: flex-start;
}

.training-cta:hover {
    transform: translateY(-2px);
    box-shadow: rgba(52, 113, 230, 0.4) 0px 8px 20px;
}

.training-cta svg {
    transition: transform 0.3s ease;
}

.training-cta:hover svg {
    transform: translateX(2px);
}

/* Image removed - keeping for backwards compatibility */
.training-card-image {
    display: none;
}

/* Formations CTA */
.formations-cta {
    text-align: center;
    margin-top: 20px;
}

.formations-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgb(34, 32, 32);
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.formations-btn:hover {
    background: #4ABDFB;
    transform: translateY(-2px);
}

.formations-btn svg {
    transition: transform 0.3s ease;
}

.formations-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Formations */
@media (max-width: 1024px) {
    .formations-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .formations-sidebar {
        position: relative;
        top: 0;
    }

    .training-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
        gap: 10px;
    }

    .training-nav li {
        white-space: nowrap;
        padding: 10px 14px;
    }

    .nav-indicator {
        display: none;
    }

    .training-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .training-card-image {
        height: 180px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .formations-heading h2 {
        font-size: 30px;
    }

    .training-card-content {
        padding: 24px;
    }

    .training-card-content h3 {
        font-size: 20px;
    }
    
    .training-features {
        grid-template-columns: 1fr;
    }
}

/* Contact Personal Section */
.contact-personal {
    background: white;
    border: 2px solid rgb(237, 237, 237);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.contact-personal:hover {
    border-color: rgba(52, 113, 230, 0.3);
    box-shadow: rgba(52, 113, 230, 0.1) 0px 8px 24px;
}

.contact-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgb(237, 237, 237);
}

.author-image-contact {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(52, 113, 230, 0.2);
}

.author-info-contact {
    display: flex;
    flex-direction: column;
}

.author-name-contact {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgb(34, 32, 32);
    margin: 0 0 4px 0;
}

.author-title-contact {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4ABDFB;
    margin: 0;
    font-weight: 500;
}

.contact-cta-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-text-box {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: rgb(68, 68, 68);
    margin: 0 0 8px 0;
    line-height: 1.6;
    text-align: center;
}

.contact-btn-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-btn-alt.contact-btn-primary {
    background: linear-gradient(181deg, #5a94f0 0%, #4ABDFB 48%);
    color: white;
    border: 1px solid #4ABDFB;
    box-shadow: rgba(52, 113, 230, 0.28) 0px 0.6px 0.6px -0.9px, 
                rgba(52, 113, 230, 0.27) 0px 2.3px 2.3px -1.8px, 
                rgba(52, 113, 230, 0.23) 0px 10px 10px -2.75px;
}

.contact-btn-alt.contact-btn-primary:hover {
    transform: scale(1.02);
    box-shadow: rgba(52, 113, 230, 0.4) 0px 1px 1px -0.9px, 
                rgba(52, 113, 230, 0.35) 0px 4px 4px -1.8px, 
                rgba(52, 113, 230, 0.3) 0px 15px 15px -2.75px;
}

.contact-btn-alt.contact-btn-secondary {
    background: linear-gradient(181deg, rgb(130, 230, 170) 0%, rgb(37, 211, 102) 48%);
    color: white;
    border: 1px solid rgb(37, 211, 102);
    box-shadow: rgba(37, 211, 102, 0.28) 0px 0.6px 0.6px -0.9px, 
                rgba(37, 211, 102, 0.27) 0px 2.3px 2.3px -1.8px, 
                rgba(37, 211, 102, 0.23) 0px 10px 10px -2.75px;
}

.contact-btn-alt.contact-btn-secondary:hover {
    transform: scale(1.02);
    box-shadow: rgba(37, 211, 102, 0.4) 0px 1px 1px -0.9px, 
                rgba(37, 211, 102, 0.35) 0px 4px 4px -1.8px, 
                rgba(37, 211, 102, 0.3) 0px 15px 15px -2.75px;
}

.or-text-contact {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgb(141, 141, 141);
    text-align: center;
    margin: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h1 .highlight-text {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .trust-section {
        padding: 60px 24px;
    }

    .logos-track {
        gap: 20px;
    }

    .features-section {
        padding: 80px 24px;
    }

    .features-heading h2 {
        font-size: 30px;
    }

    .features-heading p {
        font-size: 15px;
    }

    .features-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .projects-section {
        padding: 80px 24px;
    }

    .projects-heading h2 {
        font-size: 30px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        height: 480px;
    }

    .project-card:nth-child(1),
    .project-card:nth-child(2),
    .project-card:nth-child(3),
    .project-card:nth-child(4),
    .project-card:nth-child(5),
    .project-card:nth-child(6) {
        grid-column: span 12;
    }

    .reviews-section {
        padding: 80px 24px;
    }

    .reviews-heading h2 {
        font-size: 30px;
    }

    .reviews-header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-card {
        width: 360px;
    }

    .comparison-section {
        padding: 80px 24px;
    }

    .comparison-heading h2 {
        font-size: 30px;
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comparison-column {
        padding: 32px 24px;
    }
    
    .formations-section {
        padding: 80px 24px;
    }
    
    .formations-heading h2 {
        font-size: 30px;
    }
    
    .formations-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h1 .highlight-text {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .features-heading h2 {
        font-size: 26px;
    }

    .feature-illustration {
        height: 220px;
    }

    .feature-description {
        padding: 20px;
    }

    .card-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .projects-heading h2 {
        font-size: 26px;
    }

    .project-card {
        height: 420px;
    }

    .project-content {
        padding: 24px;
    }

    .project-description h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .project-description p {
        font-size: 14px;
        line-height: 20px;
    }


/* Formations responsiveness */
@media (max-width: 1024px) {
    .formations-section {
        padding: 70px 24px 50px;
    }
    .formations-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .formations-sidebar {
        position: static;
        order: 1;
    }
    .training-nav {
        flex-direction: column;
        overflow: visible;
        gap: 8px;
        padding: 0;
    }
    .training-nav li {
        flex: 1 1 auto;
        min-width: 100%;
        white-space: normal;
    }
    .formations-content {
        order: 2;
        gap: 24px;
    }
    .training-item {
        scroll-margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .formations-section {
        padding: 50px 16px 36px;
    }
    .formations-heading h2 {
        font-size: 28px;
    }
    .formations-heading p {
        font-size: 14px;
    }
    .training-nav {
        gap: 6px;
    }
    .training-nav li {
        padding: 12px;
    }
    .training-card {
        padding: 16px;
    }
    .training-card h3 {
        font-size: 20px;
    }
    .training-card p {
        font-size: 14px;
    }
    .training-features li {
        font-size: 14px;
    }
}

@media (max-width: 540px) {
    .training-nav {
        gap: 6px;
    }
    .training-nav li {
        padding: 10px 12px;
    }
    .training-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .training-duration {
        align-items: center;
    }
    .training-card {
        padding: 14px;
    }
    .training-card h3 {
        font-size: 18px;
    }
    .training-card p,
    .training-features li {
        font-size: 13px;
    }
}
    .reviews-heading h2 {
        font-size: 26px;
    }

    .review-card {
        width: 300px;
        padding: 20px;
    }

    .google-rating {
        padding: 12px 16px;
    }

    .google-logo {
        width: 24px;
        height: 24px;
    }

    .comparison-heading h2 {
        font-size: 26px;
    }

    .comparison-column {
        padding: 28px 20px;
    }

    .comparison-column h3 {
        font-size: 18px;
    }

    .comparison-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .faq-section {
        padding: 80px 24px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .faq-left {
        position: static;
    }

    .faq-header h2 {
        font-size: 26px;
        line-height: 32px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
    
    .formations-heading h2 {
        font-size: 15px;
    }
    
    .faq-heading h2 {
        font-size: 15px;
    }
}

/* Section Blog */
.blog-section {
    padding: 40px 24px;
    background: linear-gradient(135deg, rgb(250, 252, 255) 0%, rgb(255, 255, 255) 100%);
}

.blog-container {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 64px;
}

.blog-header h2 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: rgb(34, 32, 32);
    margin: 0 0 16px 0;
}

.blog-header p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: rgb(102, 102, 102);
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.blog-card {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(237, 237, 237);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(52, 113, 230, 0.15) 0px 12px 32px;
    border-color: rgba(52, 113, 230, 0.3);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #4ABDFB, #5a94f0);
    color: rgb(255, 255, 255);
    padding: 6px 14px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: rgba(52, 113, 230, 0.4) 0px 4px 12px;
}

.blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-meta svg {
    color: rgb(141, 141, 141);
    flex-shrink: 0;
}

.blog-meta span {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: rgb(141, 141, 141);
    font-weight: 500;
}

.blog-content h3 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: rgb(34, 32, 32);
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #4ABDFB;
}

.blog-content p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(102, 102, 102);
    margin: 0 0 20px 0;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4ABDFB;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 12px;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(4px);
}

.blog-cta {
    text-align: center;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(180deg, rgb(51, 51, 51) 34%, rgb(34, 32, 32) 100%);
    color: rgb(243, 243, 243);
    border-radius: 12px;
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 4px 0px, rgba(0, 0, 0, 0.5) 0px -2px 4px 0px inset;
}

.blog-btn:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 8px 0px, rgba(0, 0, 0, 0.5) 0px -2px 4px 0px inset;
    gap: 16px;
}

.blog-btn svg {
    transition: transform 0.3s ease;
}

.blog-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Blog Section */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card:nth-child(3) {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 80px 24px;
    }

    .blog-header h2 {
        font-size: 30px;
    }

    .blog-header p {
        font-size: 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card:nth-child(3) {
        grid-column: span 1;
        max-width: none;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 24px;
    }

    .blog-content h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 60px 20px;
    }

    .blog-header h2 {
        font-size: 30px;
    }

    .blog-header p {
        font-size: 15px;
    }

    .blog-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Section Contact */
.contact-section {
    padding: 40px 24px;
    background-color: rgb(255, 255, 255);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-heading {
    text-align: center;
    margin-bottom: 25px;
}

.contact-heading h2 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: rgb(34, 32, 32);
    margin: 0 0 16px 0;
}

.contact-heading p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: rgb(102, 102, 102);
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

/* Formulaire Contact */
.contact-form-wrapper {
    background-color: rgb(251, 251, 251);
    border: 1px solid rgb(237, 237, 237);
    border-radius: 24px;
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgb(34, 32, 32);
}

.required {
    color: rgb(240, 76, 76);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    padding: 12px 16px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 12px;
    background-color: rgb(255, 255, 255);
    color: rgb(34, 32, 32);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgb(141, 141, 141);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ABDFB;
    box-shadow: 0 0 0 3px rgba(52, 113, 230, 0.1);
    background-color: rgb(250, 253, 255);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(181deg, #5a94f0 0%, #4ABDFB 48%);
    color: rgb(255, 255, 255);
    border: 1px solid #4ABDFB;
    border-radius: 12px;
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: rgba(52, 113, 230, 0.28) 0px 0.6px 0.6px -0.9px, 
                rgba(52, 113, 230, 0.27) 0px 2.3px 2.3px -1.8px, 
                rgba(52, 113, 230, 0.23) 0px 10px 10px -2.75px;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s;
}

.contact-btn:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: rgba(52, 113, 230, 0.4) 0px 1px 1px -0.9px, 
                rgba(52, 113, 230, 0.35) 0px 4px 4px -1.8px, 
                rgba(52, 113, 230, 0.3) 0px 15px 15px -2.75px;
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

/* Coordonnées Alternatives */
.contact-alternatives {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-alternatives h3 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: rgb(34, 32, 32);
    margin: 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background-color: rgb(251, 251, 251);
    border: 1px solid rgb(237, 237, 237);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(4px);
    box-shadow: rgba(52, 113, 230, 0.1) 0px 4px 16px;
    border-color: rgba(52, 113, 230, 0.2);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.whatsapp-icon {
    background: linear-gradient(135deg, rgb(37, 211, 102), rgb(52, 227, 119));
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    fill: rgb(255, 255, 255);
}

.email-icon {
    background: linear-gradient(135deg, #4ABDFB, #5a94f0);
}

.email-icon svg {
    width: 28px;
    height: 28px;
    color: rgb(255, 255, 255);
}

.contact-method-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-method-content h4 {
    font-family: "Poppins", "Poppins Placeholder", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgb(34, 32, 32);
    margin: 0;
}

.contact-method-link {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: rgb(84, 84, 84);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.contact-method-link:hover {
    opacity: 0.7;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 24px;
    }

    .contact-heading h2 {
        font-size: 30px;
    }

    .contact-heading p {
        font-size: 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form-wrapper {
        padding: 36px;
    }

    .contact-alternatives h3 {
        font-size: 22px;
    }

    .contact-method {
        padding: 20px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }

    .email-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-method-content h4 {
        font-size: 16px;
    }

    .contact-method-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-heading h2 {
        font-size: 30px;
    }

    .contact-heading p {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    .contact-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .contact-alternatives h3 {
        font-size: 20px;
    }

    .contact-method {
        padding: 16px;
        gap: 16px;
    }

    .contact-method-content h4 {
        font-size: 14px;
    }

    .contact-method-link {
        font-size: 13px;
    }
}

/* Alertes */
.alert {
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 12px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.alert-error {
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.alert-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.alert-content svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: currentColor;
}

.alert strong {
    display: block;
    margin-bottom: 4px;
}

.alert ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alert li {
    margin: 4px 0;
}

/* Erreurs de formulaire */
.form-error {
    font-size: 13px;
    color: rgb(240, 76, 76);
    font-weight: 500;
}

.form-hint {
    font-size: 12px;
    color: rgb(141, 141, 141);
    text-align: right;
}

/* Mobile background fix */
@media (max-width: 768px) {
    body,
    .hero-section,
    .hero-background,
    .hero-bg-image {
        background: #fff !important;
    }
}
