/* Coaching styles for fresh design */

/* Coaching Section */
.coaching {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 163, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.coaching::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(0,255,163,0.3)"/><circle cx="80" cy="30" r="1" fill="rgba(0,212,255,0.3)"/><circle cx="40" cy="70" r="1" fill="rgba(0,255,163,0.3)"/><circle cx="90" cy="80" r="1" fill="rgba(0,212,255,0.3)"/><circle cx="10" cy="90" r="1" fill="rgba(0,255,163,0.3)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.coaching-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coaching-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 255, 163, 0.5);
}

.coaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.1), transparent);
    transition: left 0.5s;
}

.coaching-card:hover::before {
    left: 100%;
}

.coaching-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #00d4ff, #00ffa3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0a0e27;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.coaching-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00d4ff;
}

.coaching-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lang-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-btn.active {
    background: linear-gradient(135deg, #00d4ff, #00ffa3);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .coaching {
        padding: 80px 0;
    }
    
    .coaching-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .coaching-card {
        padding: 30px 25px;
    }
    
    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between; /* Aligner les éléments sur les côtés */
        align-items: center; /* Centrer verticalement */
    }

    .nav-cta {
        display: none; /* Masquer le bouton Let's Talk */
    }

    .nav-menu {
        order: 1; /* Placer le menu sur la ligne suivante */
        width: 100%;
        justify-content: center;
        margin-top: 15px; /* Ajouter un peu d'espace */
    }
}

/* Animation for coaching section */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Enhanced navigation for coaching */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00ffa3);
    transition: width 0.3s ease;
}

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