/**
 * =============================================
 * FEUILLE DE STYLE PRINCIPALE
 * Projet : PuissanceWeb2 - Site Vitrine
 * =============================================
 * Palette :
 *   - Bleu foncé    : #0a192f
 *   - Bleu nuit     : #112240
 *   - Cyan          : #00d4ff
 *   - Cyan foncé    : #00a8cc
 *   - Blanc         : #ffffff
 *   - Gris clair    : #f0f2f5
 *   - Texte         : #e6f1ff
 *   - Texte sombre  : #333333
 *
 * Police : 'Poppins', sans-serif
 */

/* =============================================
   1. RESET & STYLES DE BASE
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* =============================================
   2. UTILITAIRES
   ============================================= */
.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-muted { color: #a8b2d1 !important; }
.text-highlight { color: #00d4ff; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.bg-light { background-color: #f0f2f5; }
.bg-dark { background-color: #0a192f; }

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* =============================================
   3. BOUTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #0a192f;
    border-color: #00d4ff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #00d4ff;
    border-color: #00d4ff;
}

.btn-outline:hover {
    background-color: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.btn-outline-light {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #0a192f;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* =============================================
   4. TOP BAR
   ============================================= */
.top-bar {
    background-color: #0a192f;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding: 8px 0;
    font-size: 0.82rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a8b2d1;
}

.top-bar-contact a {
    color: #a8b2d1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-contact a:hover {
    color: #00d4ff;
}

.top-bar-contact i {
    color: #00d4ff;
    font-size: 0.8rem;
}

.separator-dot {
    color: #00d4ff;
    opacity: 0.5;
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(0, 212, 255, 0.08);
    color: #a8b2d1;
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    background-color: #00d4ff;
    color: #0a192f;
    transform: translateY(-2px);
}

/* =============================================
   5. NAVIGATION PRINCIPALE
   ============================================= */
.main-header {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.08);
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0a192f;
}

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

.logo-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.68rem;
    color: #00d4ff;
    font-weight: 400;
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #a8b2d1;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 0.8rem;
    color: #00d4ff;
    opacity: 0.7;
}

.nav-link:hover {
    background-color: rgba(0, 212, 255, 0.08);
    color: #ffffff;
}

.nav-link:hover i {
    opacity: 1;
}

.nav-link.active {
    background-color: rgba(0, 212, 255, 0.12);
    color: #00d4ff;
}

.nav-link.active i {
    opacity: 1;
}

/* Bouton CTA navbar */
.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #0a192f;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* Hamburger mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   6. SECTION HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0a192f;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.hero-bg canvas {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 25, 47, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-title-highlight {
    display: block;
    color: #00d4ff;
    font-size: 2rem;
    margin-top: 5px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #a8b2d1;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.45s both;
}

/* Stats hero */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #00d4ff;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: #a8b2d1;
    margin-top: 4px;
}

/* Illustration : fenêtre de code */
.hero-illustration {
    animation: fadeInRight 0.8s ease 0.5s both;
}

.hero-code-window {
    background-color: #112240;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.code-window-header {
    background-color: #1d2d50;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.code-title {
    margin-left: 12px;
    font-size: 0.78rem;
    color: #a8b2d1;
}

.code-window-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
}

.code-tag { color: #ff79c6; }
.code-text { color: #f1fa8c; }

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #a8b2d1;
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: #00d4ff;
}

/* =============================================
   7. SECTIONS GÉNÉRIQUES
   ============================================= */
.section {
    padding: 90px 0;
}

.section-header {
    margin-bottom: 55px;
}

.section-badge {
    display: inline-block;
    background-color: rgba(0, 212, 255, 0.08);
    color: #00d4ff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.83rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.section-badge-light {
    background-color: rgba(255, 255, 255, 0.08);
    color: #00d4ff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-description {
    font-size: 1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   8. SERVICES (grille)
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00a8cc);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #00d4ff;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 168, 204, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #00d4ff;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a192f;
    margin-bottom: 10px;
}

.service-text {
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-link {
    font-size: 0.85rem;
    color: #00d4ff;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

/* =============================================
   9. FORMATIONS (cartes)
   ============================================= */
.formations-section {
    background: linear-gradient(180deg, #0a192f, #112240);
}

.formations-section .section-title {
    color: #ffffff;
}

.formations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.formation-card {
    background-color: #112240;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s ease;
}

.formation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: #00d4ff;
}

.formation-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.formation-card:hover .formation-image img {
    transform: scale(1.08);
}

.formation-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.73rem;
    font-weight: 600;
    color: #ffffff;
}

.formation-badge-debutant { background-color: #38a169; }
.formation-badge-intermediaire { background-color: #d69e2e; }
.formation-badge-avance { background-color: #e53e3e; }

.formation-type-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.73rem;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.formation-info {
    padding: 22px;
}

.formation-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.formation-desc {
    font-size: 0.85rem;
    color: #a8b2d1;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.formation-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 0.82rem;
    color: #a8b2d1;
}

.formation-meta i {
    color: #00d4ff;
    margin-right: 4px;
}

.formation-prix {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
}

/* =============================================
   10. POURQUOI MOI
   ============================================= */
.pourquoi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pourquoi-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pourquoi-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.dispo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(10, 25, 47, 0.9);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.dispo-dot {
    width: 10px;
    height: 10px;
    background-color: #38a169;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pourquoi-text {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.pourquoi-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.point-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.point-item i {
    font-size: 1.3rem;
    color: #00a8cc;
    margin-top: 2px;
    flex-shrink: 0;
}

.point-item strong {
    display: block;
    color: #0a192f;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.point-item p {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
}

/* =============================================
   11. TÉMOIGNAGES
   ============================================= */
.temoignages-section {
    background-color: #f8fafc;
}

.temoignageSwiper {
    padding-bottom: 50px;
}

.temoignage-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    height: 100%;
    border-top: 4px solid #00d4ff;
}

.temoignage-stars {
    color: #f6c23e;
    margin-bottom: 15px;
}

.temoignage-stars i {
    margin: 0 2px;
}

.temoignage-text {
    font-style: italic;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.93rem;
}

.temoignage-auteur {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auteur-avatar i {
    font-size: 2.5rem;
    color: #00d4ff;
}

.auteur-info {
    text-align: left;
}

.auteur-info strong {
    display: block;
    color: #0a192f;
    font-size: 0.9rem;
}

.auteur-info span {
    font-size: 0.78rem;
    color: #888888;
}

.temoignageSwiper .swiper-pagination-bullet {
    background-color: #00d4ff;
    opacity: 0.3;
}

.temoignageSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* =============================================
   12. SECTION CTA FINALE
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, #0a192f, #112240);
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 168, 204, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.05rem;
    color: #a8b2d1;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   13. PIED DE PAGE
   ============================================= */
.main-footer {
    background-color: #0a192f;
    color: #a8b2d1;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-logo i {
    color: #00d4ff;
    font-size: 1.5rem;
}

.footer-description {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #a8b2d1;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(0, 212, 255, 0.08);
    border-radius: 50%;
    color: #a8b2d1;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #00d4ff;
    color: #0a192f;
    transform: translateY(-3px);
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00a8cc);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.88rem;
}

.footer-col ul li a {
    color: #a8b2d1;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: #00d4ff;
}

.footer-col ul li a:hover {
    color: #00d4ff;
    padding-left: 5px;
}

.footer-services ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-services ul li i {
    color: #00d4ff;
    font-size: 0.85rem;
    width: 20px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact ul li i {
    color: #00d4ff;
    margin-top: 4px;
    width: 16px;
}

.footer-contact ul li a {
    color: #a8b2d1;
}

.footer-contact ul li a:hover {
    color: #00d4ff;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    text-align: center;
    font-size: 0.83rem;
    color: #a8b2d1;
}

.footer-bottom p {
    margin-bottom: 4px;
}

.footer-made-with i {
    color: #e53e3e;
    margin: 0 4px;
    animation: pulse 1.5s infinite;
}

/* =============================================
   14. WHATSAPP FLOTTANT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

/* =============================================
   15. BOUTON RETOUR EN HAUT
   ============================================= */
.btn-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0a192f, #112240);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    background: #00d4ff;
    color: #0a192f;
    transform: translateY(-3px);
}

/* =============================================
   16. ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* =============================================
   17. RESPONSIVE DESIGN
   ============================================= */

/* Tablette (max 992px) */
@media screen and (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-illustration {
        order: 0;
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-title-highlight {
        font-size: 1.6rem;
    }

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

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

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

    .pourquoi-image-wrapper img {
        height: 350px;
    }

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

    .section-title {
        font-size: 1.9rem;
    }

    /* Menu mobile */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #112240;
        flex-direction: column;
        padding: 80px 20px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        gap: 5px;
        z-index: 1000;
    }

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

    .nav-link {
        width: 100%;
        padding: 12px 15px;
    }

    .btn-nav-cta {
        display: none;
    }
}

/* Mobile (max 768px) */
@media screen and (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title-highlight {
        font-size: 1.3rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-code-window {
        max-width: 100%;
    }

    .code-window-body {
        font-size: 0.75rem;
        padding: 15px;
    }

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

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

    .cta-card {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .btn-back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

/* Petit mobile (max 480px) */
@media screen and (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-badge {
        font-size: 0.75rem;
    }
}
/* =============================================
   STYLES PAGE À PROPOS
   ============================================= */

/* Bannière de page */
.page-banner {
    position: relative;
    background: linear-gradient(135deg, #0a192f, #112240);
    padding: 80px 0;
    text-align: center;
}

.page-banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,212,255,0.05) 0%, transparent 70%);
}

.page-banner-content {
    position: relative;
    z-index: 1;
}

.page-banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.fil-ariane {
    font-size: 0.9rem;
    color: #a8b2d1;
}

.fil-ariane a {
    color: #00d4ff;
}

.fil-ariane a:hover {
    text-decoration: underline;
}

.fil-ariane .separator {
    margin: 0 8px;
    color: #a8b2d1;
}

/* Grille À propos */
.a-propos-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Photo */
.a-propos-photo-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.a-propos-photo-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.a-propos-experience {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #0a192f;
    padding: 14px 22px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,212,255,0.3);
}

.exp-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Réseaux sociaux */
.a-propos-social {
    margin-top: 20px;
    text-align: center;
}

.a-propos-social span {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.a-propos-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.a-propos-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: #0a192f;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.a-propos-social-links a:hover {
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Texte */
.a-propos-text-col .section-title {
    margin-top: 10px;
}

.a-propos-role {
    font-size: 1.1rem;
    color: #0a192f;
    font-weight: 600;
    margin-bottom: 5px;
}

.a-propos-role i {
    color: #00d4ff;
    margin-right: 6px;
}

.a-propos-localisation {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.a-propos-localisation i {
    color: #e53e3e;
    margin-right: 6px;
}

.a-propos-texte {
    color: #555;
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.a-propos-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* =============================================
   COMPÉTENCES
   ============================================= */
.competences-section {
    background: linear-gradient(180deg, #0a192f, #112240);
}

.competences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.competence-card {
    background-color: #112240;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(0,212,255,0.08);
    transition: all 0.3s ease;
}

.competence-card:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.competence-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #00d4ff;
}

.competence-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.competence-card p {
    font-size: 0.83rem;
    color: #a8b2d1;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Barre de progression */
.progress-bar {
    background-color: rgba(255,255,255,0.05);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #00a8cc);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}

.progress-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #00d4ff;
}

/* =============================================
   VALEURS
   ============================================= */
.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.valeur-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.valeur-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #00d4ff;
}

.valeur-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,168,204,0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.valeur-card:hover .valeur-icon {
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #ffffff;
    transform: rotate(-5deg) scale(1.1);
}

.valeur-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0a192f;
    margin-bottom: 10px;
}

.valeur-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .a-propos-grid {
        grid-template-columns: 1fr;
    }

    .a-propos-photo-wrapper img {
        height: 350px;
    }

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

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

    .page-banner-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .competences-grid {
        grid-template-columns: 1fr;
    }

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

    .a-propos-buttons {
        flex-direction: column;
    }

    .a-propos-buttons .btn {
        width: 100%;
    }

    .page-banner {
        padding: 50px 0;
    }

    .page-banner-title {
        font-size: 1.8rem;
    }
}
/* =============================================
   STYLES PAGE SERVICES
   ============================================= */

/* Service détail row */
.service-detail-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eeeeee;
}

.service-detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-row-reverse {
    grid-template-columns: 1fr 200px;
}

.service-row-reverse .service-detail-visual {
    order: 2;
}

.service-row-reverse .service-detail-content {
    order: 1;
}

/* Visuel (icône) */
.service-detail-visual {
    text-align: center;
    position: relative;
}

.service-detail-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,168,204,0.05));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #00d4ff;
    margin: 0 auto;
    border: 2px solid rgba(0,212,255,0.15);
    transition: all 0.4s ease;
}

.service-detail-row:hover .service-detail-icon {
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #ffffff;
    transform: scale(1.05);
    border-color: #00d4ff;
}

.service-step {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(0,212,255,0.04);
    line-height: 1;
    z-index: -1;
}

/* Contenu */
.service-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 12px;
}

.service-detail-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.detail-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #0a192f;
    padding: 10px 14px;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #00d4ff;
    transition: all 0.3s ease;
}

.detail-point:hover {
    background-color: #f0f9ff;
    border-left-color: #00a8cc;
}

.detail-point i {
    color: #00a8cc;
    font-size: 1rem;
}

/* =============================================
   PROCESSUS DE TRAVAIL
   ============================================= */
.processus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
}

/* Ligne de connexion entre les étapes */
.processus-grid::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00a8cc, #00d4ff);
    z-index: 0;
}

.processus-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.processus-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0,212,255,0.06);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.processus-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 0 6px #ffffff;
    transition: all 0.4s ease;
}

.processus-card:hover .processus-icon-wrapper {
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(0,212,255,0.1);
}

.processus-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a192f;
    margin-bottom: 8px;
}

.processus-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .service-detail-row,
    .service-row-reverse {
        grid-template-columns: 1fr;
    }

    .service-row-reverse .service-detail-visual {
        order: 0;
    }

    .service-detail-visual {
        margin-bottom: 20px;
    }

    .service-detail-icon {
        width: 100px;
        height: 100px;
        font-size: 2.2rem;
    }

    .service-step {
        display: none;
    }

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

    .processus-grid::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .processus-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-title {
        font-size: 1.3rem;
    }
}
/* =============================================
   STYLES PAGE TARIFS
   ============================================= */

/* Note info */
.tarifs-note-info {
    background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,168,204,0.04));
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    max-width: 700px;
    margin: 0 auto 20px;
}

.tarifs-note-info i {
    color: #00d4ff;
    font-size: 1.4rem;
    margin-top: 2px;
}

.tarifs-note-info strong {
    display: block;
    color: #0a192f;
    margin-bottom: 3px;
}

.tarifs-note-info div {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
}

/* Grille tarifs (4 colonnes) */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Carte tarif */
.tarif-card {
    background-color: #112240;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,212,255,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.tarif-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: #00d4ff;
}

.tarif-card-populaire {
    border-color: #00d4ff;
    position: relative;
    transform: translateY(-10px);
}

.tarif-card-populaire:hover {
    transform: translateY(-15px);
}

.tarif-populaire-badge {
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #0a192f;
    text-align: center;
    padding: 8px;
    font-size: 0.78rem;
    font-weight: 600;
}

.tarif-populaire-badge i {
    margin-right: 4px;
}

.tarif-card-header {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tarif-card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.tarif-prix {
    margin-bottom: 5px;
}

.tarif-montant {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d4ff;
    line-height: 1;
}

.tarif-periode {
    font-size: 0.9rem;
    color: #a8b2d1;
}

.tarif-annuel {
    display: block;
    font-size: 0.8rem;
    color: #a8b2d1;
    margin-top: 5px;
}

/* Corps de la carte */
.tarif-card-body {
    padding: 20px;
    flex: 1;
}

.tarif-features {
    list-style: none;
}

.tarif-features li {
    padding: 10px 0;
    font-size: 0.85rem;
    color: #a8b2d1;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

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

.tarif-features li i {
    color: #38a169;
    font-size: 0.8rem;
}

.feature-ideal {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,212,255,0.1) !important;
    color: #00d4ff !important;
    font-weight: 500;
    font-style: italic;
}

.feature-ideal i {
    color: #00d4ff !important;
}

/* Footer carte */
.tarif-card-footer {
    padding: 15px 20px 25px;
}

/* =============================================
   SECTION ACHAT DÉFINITIF
   ============================================= */
.tarifs-note-warning {
    background-color: #FFF8E7;
    border: 1px solid #f6c23e;
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    max-width: 700px;
    margin: 0 auto 30px;
}

.tarifs-note-warning i {
    color: #d69e2e;
    font-size: 1.4rem;
    margin-top: 2px;
}

.tarifs-note-warning strong {
    display: block;
    color: #0a192f;
    margin-bottom: 3px;
}

.tarifs-note-warning div {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
}

/* Tableau */
.tarifs-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    min-width: 600px;
}

.tarifs-table thead {
    background-color: #0a192f;
    color: #ffffff;
}

.tarifs-table th {
    padding: 15px;
    font-size: 0.83rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tarifs-table td {
    padding: 15px;
    font-size: 0.88rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.tarifs-table tbody tr:hover {
    background-color: #f8fafc;
}

.prix-col {
    font-weight: 700;
    color: #0a192f;
    font-size: 1rem;
}

/* Carte maintenance */
.maintenance-card {
    background-color: #f8fafc;
    border-radius: 14px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid #eeeeee;
}

.maintenance-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,168,204,0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #00d4ff;
    flex-shrink: 0;
}

.maintenance-content {
    flex: 1;
    min-width: 200px;
}

.maintenance-content h3 {
    font-size: 1.1rem;
    color: #0a192f;
    margin-bottom: 4px;
}

.maintenance-content p {
    font-size: 0.85rem;
    color: #666;
}

.maintenance-prix {
    text-align: center;
}

.maintenance-montant {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a192f;
}

.maintenance-periode {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

/* Formations mini */
.formations-mini-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.formation-mini-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.formation-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #00d4ff;
}

.formation-mini-icon {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.formation-mini-card h4 {
    font-size: 0.85rem;
    color: #0a192f;
    margin-bottom: 5px;
    font-weight: 600;
}

.formation-mini-card p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00a8cc;
}

.formation-mini-pack {
    background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(0,168,204,0.02));
    border-color: #00d4ff;
}

.mini-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #38a169;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .tarifs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tarif-card-populaire {
        transform: none;
    }

    .tarif-card-populaire:hover {
        transform: translateY(-8px);
    }

    .formations-mini-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .tarifs-grid {
        grid-template-columns: 1fr;
    }

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

    .maintenance-card {
        flex-direction: column;
        text-align: center;
    }

    .tarif-montant {
        font-size: 2rem;
    }
}/* =============================================
   STYLES PAGE FORMATIONS
   ============================================= */

/* Section filtres */
.filtre-section {
    padding: 30px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.filtre-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: end;
}

.filtre-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0a192f;
    margin-bottom: 6px;
}

.filtre-field label i {
    color: #00d4ff;
    margin-right: 4px;
}

.filtre-select,
.filtre-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.filtre-select:focus,
.filtre-input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.filtre-actions {
    margin-top: 15px;
}

/* Résultat info */
.resultat-info {
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #666;
}

.resultat-info i {
    color: #00d4ff;
    margin-right: 6px;
}

.resultat-info strong {
    color: #0a192f;
}

/* Grille formations (3 colonnes) */
.formations-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Carte formation */
.formation-card-full {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.formation-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #00d4ff;
}

.formation-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.formation-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.formation-card-full:hover .formation-card-image img {
    transform: scale(1.08);
}

.formation-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.formation-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0a192f;
    margin-bottom: 8px;
}

.formation-card-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.formation-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.82rem;
    color: #888;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.formation-card-meta i {
    color: #00d4ff;
    margin-right: 4px;
}

.formation-card-prix {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a192f;
}

.formation-card-actions {
    display: flex;
    gap: 10px;
}

.formation-card-actions .btn {
    flex: 1;
}

/* Aucun résultat */
.aucun-resultat {
    padding: 60px 20px;
}

.aucun-resultat-icon {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.aucun-resultat h3 {
    font-size: 1.4rem;
    color: #0a192f;
    margin-bottom: 10px;
}

.aucun-resultat p {
    color: #888;
    margin-bottom: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    background-color: #ffffff;
    color: #0a192f;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: #00d4ff;
    color: #ffffff;
    border-color: #00d4ff;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.pagination-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: #ffffff;
    color: #0a192f;
    border: 1px solid #ddd;
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.pagination-num:hover {
    background-color: #f0f9ff;
    border-color: #00d4ff;
    color: #00d4ff;
}

.pagination-num.active {
    background-color: #00d4ff;
    color: #ffffff;
    border-color: #00d4ff;
    cursor: default;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #888;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .filtre-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media screen and (max-width: 768px) {
    .filtre-grid {
        grid-template-columns: 1fr;
    }

    .formations-grid-full {
        grid-template-columns: 1fr;
    }

    .formation-card-actions {
        flex-direction: column;
    }
}
/* =============================================
   STYLES PAGE DÉTAIL FORMATION
   ============================================= */

/* Fil d'Ariane */
.fil-ariane-section {
    background-color: #f8fafc;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.fil-ariane .current {
    color: #00d4ff;
    font-weight: 500;
}

/* Grille principale */
.formation-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Colonne gauche : Image + Modules */
.formation-detail-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.formation-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Prix mobile (caché sur desktop) */
.formation-detail-prix-mobile {
    display: none;
}

/* Modules */
.formation-detail-modules {
    margin-top: 30px;
}

.formation-detail-modules h3 {
    font-size: 1.2rem;
    color: #0a192f;
    margin-bottom: 20px;
}

.formation-detail-modules h3 i {
    color: #00d4ff;
    margin-right: 8px;
}

.modules-liste {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.module-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.module-item:hover {
    background-color: #f8fafc;
    padding-left: 10px;
}

.module-numero {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00d4ff;
    opacity: 0.4;
    min-width: 40px;
    line-height: 1;
}

.module-content {
    flex: 1;
}

.module-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0a192f;
    margin-bottom: 4px;
}

.module-content p {
    font-size: 0.83rem;
    color: #888;
    line-height: 1.5;
}

.module-duree {
    font-size: 0.78rem;
    color: #00a8cc;
    white-space: nowrap;
    background-color: rgba(0,212,255,0.06);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.module-duree i {
    margin-right: 3px;
}

/* Colonne droite : Infos + Achat */
.formation-detail-titre {
    font-size: 2rem;
    font-weight: 700;
    color: #0a192f;
    margin: 12px 0 20px;
    line-height: 1.3;
}

/* Métadonnées */
.formation-detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background-color: #f8fafc;
    border-radius: 8px;
    font-size: 0.85rem;
}

.meta-item i {
    color: #00d4ff;
    font-size: 1rem;
}

.meta-item strong {
    color: #0a192f;
    margin-right: 4px;
}

.text-dispo {
    color: #38a169;
    font-weight: 500;
}

/* Description */
.formation-detail-description {
    margin-bottom: 25px;
}

.formation-detail-description h3 {
    font-size: 1.1rem;
    color: #0a192f;
    margin-bottom: 12px;
}

.formation-detail-description h3 i {
    color: #00d4ff;
    margin-right: 8px;
}

.description-texte {
    color: #555;
    line-height: 1.9;
    font-size: 0.93rem;
}

/* Ce que vous apprendrez */
.formation-detail-apprendre {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 12px;
}

.formation-detail-apprendre h3 {
    font-size: 1.1rem;
    color: #0a192f;
    margin-bottom: 15px;
}

.formation-detail-apprendre h3 i {
    color: #00d4ff;
    margin-right: 8px;
}

.apprendre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.apprendre-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #0a192f;
}

.apprendre-item i {
    color: #38a169;
    font-size: 0.9rem;
}

/* Carte d'achat */
.formation-detail-achat {
    background: linear-gradient(135deg, #0a192f, #112240);
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(0,212,255,0.15);
}

.achat-montant {
    font-size: 2.8rem;
    font-weight: 800;
    color: #00d4ff;
    line-height: 1;
}

.achat-devise {
    font-size: 1rem;
    color: #a8b2d1;
    margin-left: 5px;
}

.achat-garantie {
    font-size: 0.82rem;
    color: #a8b2d1;
    margin: 8px 0 18px;
}

.achat-garantie i {
    color: #38a169;
    margin-right: 4px;
}

.achat-ou {
    color: #a8b2d1;
    font-size: 0.85rem;
    margin: 12px 0;
    position: relative;
}

.achat-ou::before,
.achat-ou::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background-color: rgba(255,255,255,0.1);
}

.achat-ou::before { left: 0; }
.achat-ou::after { right: 0; }

/* Responsive */
@media screen and (max-width: 992px) {
    .formation-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Cacher la carte d'achat desktop, montrer la mobile */
    .formation-detail-achat {
        display: none;
    }

    .formation-detail-prix-mobile {
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }

    .detail-prix-montant {
        font-size: 2.2rem;
        font-weight: 800;
        color: #0a192f;
    }

    .formation-detail-titre {
        font-size: 1.5rem;
    }

    .formation-detail-image img {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .formation-detail-meta {
        grid-template-columns: 1fr;
    }

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

    .formation-detail-titre {
        font-size: 1.3rem;
    }
}
/* =============================================
   STYLES PAGE CONTACT
   ============================================= */

/* Grille coordonnées */
.coordonnees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.coordonnee-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.coordonnee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #00d4ff;
}

.coordonnee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,168,204,0.04));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.coordonnee-card:hover .coordonnee-icon {
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #ffffff;
}

.coordonnee-card h3 {
    font-size: 1rem;
    color: #0a192f;
    margin-bottom: 6px;
}

.coordonnee-card p {
    font-size: 0.88rem;
    color: #666;
}

.coordonnee-card a {
    color: #00d4ff;
    font-weight: 500;
}

.coordonnee-card a:hover {
    text-decoration: underline;
}

/* Grille contact (formulaire + infos) */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Titre formulaire */
.contact-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 5px;
}

.contact-form-title i {
    color: #00d4ff;
}

.contact-form-subtitle {
    color: #888;
    margin-bottom: 25px;
}

/* Formulaire */
.contact-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: #0a192f;
    margin-bottom: 6px;
}

.form-group label i {
    color: #00d4ff;
    margin-right: 5px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}

textarea.form-control {
    resize: vertical;
}

.form-hint {
    font-size: 0.75rem;
    color: #999;
    margin-top: 4px;
}

/* Message succès */
.contact-success-card {
    text-align: center;
    padding: 50px 30px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #38a169, #2f855a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: #ffffff;
    animation: bounceIn 0.6s ease;
}

.contact-success-card h2 {
    font-size: 1.6rem;
    color: #0a192f;
    margin-bottom: 10px;
}

.contact-success-card p {
    color: #666;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Colonne droite infos */
.contact-info-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,168,204,0.04));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #00d4ff;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    color: #0a192f;
    margin-bottom: 15px;
}

.contact-info-liste li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.88rem;
    color: #555;
}

.contact-info-liste li:last-child {
    border-bottom: none;
}

.horaire {
    font-weight: 600;
    color: #0a192f;
}

/* Réseaux sociaux contact */
.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateX(5px);
    color: #ffffff;
}

.social-btn.facebook { background-color: #1877f2; }
.social-btn.linkedin { background-color: #0a66c2; }
.social-btn.youtube { background-color: #ff0000; }
.social-btn.github { background-color: #24292e; }

/* Map placeholder */
.map-placeholder {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: #888;
}

.map-placeholder i {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.map-placeholder strong {
    color: #0a192f;
}

/* Alert erreur */
.alert {
    padding: 16px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
}

.alert-error {
    background-color: #fff5f5;
    border-left: 4px solid #e53e3e;
    color: #c53030;
}

.alert i {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Animation */
@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media screen and (max-width: 992px) {
    .coordonnees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media screen and (max-width: 768px) {
    .coordonnees-grid {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form-title {
        font-size: 1.4rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }
}
/* =============================================
   ALERTE COMING SOON (FORMATIONS)
   ============================================= */
.alerte-coming-soon {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,168,204,0.04));
    border: 1px solid rgba(0,212,255,0.2);
    border-left: 5px solid #00d4ff;
    border-radius: 14px;
    padding: 22px 28px;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease;
}

.alerte-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #0a192f;
    animation: pulse 2s infinite;
}

.alerte-content h3 {
    font-size: 1.1rem;
    color: #00d4ff;
    margin-bottom: 6px;
    font-weight: 600;
}

.alerte-content p {
    font-size: 0.9rem;
    color: #a8b2d1;
    line-height: 1.6;
    margin: 0;
}

.alerte-content a {
    color: #00d4ff;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.alerte-content a:hover {
    color: #ffffff;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .alerte-coming-soon {
        flex-direction: column;
        text-align: center;
        padding: 18px 20px;
    }

    .alerte-icon {
        margin: 0 auto;
    }
}