/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --color-dark:      #0a1628;
    --color-dark-blue: #0d2137;
    --color-blue:      #1a6fc4;
    --color-green:     #2ecc40;
    --color-green-dark:#27ae35;
    --color-light-bg:  #f5f7fa;
    --color-text:      #333333;
    --color-muted:     #6c757d;
    --font-main:       'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    overflow-x: hidden;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background-color: var(--color-dark);
    padding: 8px 0;
}

.btn-whatsapp-top {
    background-color: var(--color-green);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-whatsapp-top:hover {
    background-color: var(--color-green-dark);
    color: #fff;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 12px 0;
    z-index: 1030;
}

.navbar-brand img {
    height: 55px;
}

.navbar-nav .nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dark) !important;
    padding: 8px 12px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-blue) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: var(--color-blue);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.dropdown-item {
    font-size: 0.85rem;
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: var(--color-light-bg);
    color: var(--color-blue);
}

/* ============================================
   HERO SECTION
   ============================================ */
/* ============================================
   HERO SECTION AVEC IMAGE DE FOND
   ============================================ */
.hero-section {
    background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(13, 33, 55, 0.88) 40%, rgba(26, 58, 106, 0.85) 100%),
                      url('../images/hero-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Effet de particules/lumière en overlay (optionnel) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(46, 204, 64, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 111, 196, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-globe {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(26, 111, 196, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-green {
    color: var(--color-green) !important;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.hero-buttons .btn-hero {
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-green {
    background-color: var(--color-green);
    color: #fff;
    border: 2px solid var(--color-green);
}

.btn-green:hover {
    background-color: var(--color-green-dark);
    border-color: var(--color-green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-blue {
    background-color: var(--color-blue);
    color: #fff;
    border: 2px solid var(--color-blue);
}

.btn-blue:hover {
    background-color: #1560a8;
    border-color: #1560a8;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.hero-globe {
    position: relative;
    z-index: 1;
}

.hero-globe img {
    max-height: 450px;
    filter: drop-shadow(0 0 40px rgba(26, 111, 196, 0.3));
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background-color: var(--color-dark-blue);
    padding: 30px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.stat-item {
    padding: 10px 20px;
}

.stat-icon {
    font-size: 2rem;
    color: #fff;
    opacity: 0.9;
    min-width: 50px;
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-green);
    margin: 0 auto;
}

/* ============================================
   EXPERTISE CARDS
   ============================================ */
.expertise-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--color-blue);
}

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.expertise-icon i {
    color: var(--color-blue);
}

.expertise-card:nth-child(odd) .expertise-icon i {
    color: var(--color-green);
}

.expertise-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.expertise-desc {
    font-size: 0.78rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================
   SOLUTIONS & FORMATIONS CARDS
   ============================================ */
.card-sf {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e8ecf1;
    height: 100%;
}

.sf-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-blue);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.sf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-list li {
    font-size: 0.88rem;
    color: var(--color-text);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sf-list li i {
    color: var(--color-green);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-sf {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.sf-image {
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

/* ============================================
   DARK / LIGHT CARDS (Coworking, Social, etc.)
   ============================================ */
.card-dark {
    background-color: var(--color-dark-blue);
    color: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.card-dark-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.card-dark-icon {
    font-size: 3rem;
    color: var(--color-green);
    margin-bottom: 15px;
}

.card-dark-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    flex-grow: 1;
}

.coworking-icon {
    font-size: 3.5rem;
    color: var(--color-green);
    margin-bottom: 15px;
}

.coworking-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.coworking-list li {
    font-size: 0.9rem;
    padding: 5px 0;
    color: rgba(255,255,255,0.9);
}

.card-light {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 16px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.card-light-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.text-green {
    color: #1F6FEB  !important;
}

.card-light-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.card-light-desc {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.card-light-author {
    font-size: 0.82rem;
    color: var(--color-muted);
    margin-bottom: 10px;
}

.quote-icon {
    font-size: 2rem;
    color: #1F6FEB  ;
    margin-bottom: 10px;
}

.stars {
    color: #f5a623;
    font-size: 1rem;
    margin-bottom: 10px;
}

.stars i {
    margin-right: 2px;
}

.btn-outline-blue {
    background: transparent;
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline-blue:hover {
    background: var(--color-blue);
    color: #fff;
}

/* ============================================
   VALEURS
   ============================================ */
.section-valeurs {
    background: #fff;
}

.valeur-item {
    padding: 10px 0;
}

.valeur-icon {
    font-size: 1.5rem;
    color: var(--color-dark);
    min-width: 40px;
    text-align: center;
}

.valeur-icon i {
    opacity: 0.7;
}

.valeur-item strong {
    font-size: 0.85rem;
    color: var(--color-dark);
}

.valeur-item small {
    font-size: 0.78rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta {
    background-color: var(--color-light-bg);
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 5px;
}

.cta-desc {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 0;
}

.btn-cta {
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr-code-img {
    border-radius: 8px;
    border: 1px solid #e8ecf1;
    padding: 5px;
    background: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background-color: var(--color-dark);
    color: #fff;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-green);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--color-green);
    width: 16px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.social-icons a:hover {
    background: var(--color-green);
    transform: translateY(-3px);
}

/* ============================================
   BOTTOM BAR
   ============================================ */
.bottom-bar {
    background-color: #0F2D52;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .stats-bar {
        margin-top: 0;
        border-radius: 0;
    }

    .stat-item {
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        border-right: none !important;
        padding: 15px 10px;
    }

    .sf-image {
        min-height: 200px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .section-cta .row {
        text-align: center;
    }

    .section-cta .d-flex {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .expertise-card {
        padding: 20px 15px;
    }

    .card-dark, .card-light {
        padding: 25px 20px;
    }
}


/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a6a 100%);
    padding: 60px 0;
}


.card-article {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-article-image {
    height: 200px;
    overflow: hidden;
}

.card-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card-article:hover .card-article-image img {
    transform: scale(1.1);
}

.card-article-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.badge-categorie {
    display: inline-block;
    background: var(--color-green);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    align-self: flex-start;
}

.card-article-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-article-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.card-article-title a:hover {
    color: var(--color-blue);
}

.card-article-extrait {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.card-article-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.btn-read-more {
    color: var(--color-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-read-more:hover {
    color: var(--color-green);
}

.btn-read-more i {
    transition: transform 0.3s;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Sidebar */
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-green);
    display: inline-block;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 10px;
}

.sidebar-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.sidebar-list a:hover {
    background: var(--color-light-bg);
    color: var(--color-blue);
}

.badge-count {
    background: var(--color-blue);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
}

.recent-article {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-article img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.recent-article h5 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-article h5 a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.recent-article h5 a:hover {
    color: var(--color-blue);
}

.recent-article small {
    color: var(--color-muted);
    font-size: 0.75rem;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
}

.article-content h2, .article-content h3 {
    color: var(--color-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

/* Pagination */
.pagination .page-link {
    color: var(--color-blue);
    border: 1px solid #dee2e6;
    margin: 0 3px;
    border-radius: 6px;
}

.pagination .page-item.active .page-link {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}

.pagination .page-link:hover {
    background-color: var(--color-light-bg);
}

/* ============================================
   PAGES INTERNES - STYLES COMMUNS
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a6a 100%);
    padding: 80px 0;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/contact-bg.png') repeat;
    opacity: 0.1;
}

.page-hero h1 {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   PAGE À PROPOS
   ============================================ */
.card-valeur {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.card-valeur:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-valeur-icon {
    font-size: 3rem;
    color: var(--color-green);
    margin-bottom: 20px;
}

.card-valeur-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.card-valeur-desc {
    color: var(--color-muted);
    line-height: 1.6;
}

.chiffre-item {
    padding: 30px 20px;
}

.chiffre-nombre {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-green);
    margin-bottom: 10px;
}

.chiffre-label {
    font-size: 1rem;
    color: var(--color-muted);
    font-weight: 500;
}

.card-membre {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.card-membre:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-membre-img {
    height: 250px;
    overflow: hidden;
}

.card-membre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-membre-body {
    padding: 20px;
    text-align: center;
}

.card-membre-nom {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.card-membre-poste {
    font-size: 0.9rem;
    color: var(--color-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.card-membre-expertise {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 0;
}

/* ============================================
   PAGE SERVICES
   ============================================ */
.card-service {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.bg-green {
    background: var(--color-green);
}

.bg-blue {
    background: var(--color-blue);
}

.card-service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.card-service-desc {
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.card-service-list li {
    padding: 8px 0;
    color: var(--color-text);
    font-size: 0.9rem;
}

.card-service-list li i {
    color: var(--color-green);
    margin-right: 10px;
}

.btn-service {
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-service:hover {
    color: var(--color-green);
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.feature-item p {
    color: var(--color-muted);
    font-size: 0.9rem;
}

/* ============================================
   PAGE FORMATIONS
   ============================================ */
.card-formation {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-formation:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-formation-header {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-green) 100%);
    padding: 30px;
    text-align: center;
}

.card-formation-header i {
    font-size: 3rem;
    color: #fff;
}

.card-formation-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-formation-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.card-formation-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.card-formation-meta i {
    margin-right: 5px;
}

.card-formation-desc {
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-formation-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.card-formation-programme {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.card-formation-programme li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.card-formation-programme li i {
    color: var(--color-green);
    margin-right: 10px;
}

.btn-formation {
    background: var(--color-green);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-formation:hover {
    background: var(--color-green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.modalite-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.modalite-item p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   PAGE SOLUTIONS
   ============================================ */
.card-solution {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.card-solution:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-solution-icon {
    font-size: 2.5rem;
    color: var(--color-green);
    margin-bottom: 20px;
}

.card-solution-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.card-solution-desc {
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-solution-avantages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-solution-avantages li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.card-solution-avantages li i {
    color: var(--color-green);
    margin-right: 10px;
}

.processus-item {
    position: relative;
    padding: 20px;
}

.processus-line {
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--color-green);
    z-index: 0;
}

.processus-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.processus-titre {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.processus-desc {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   PAGE RÉALISATIONS
   ============================================ */
.card-projet {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.card-projet:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-projet-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-projet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card-projet:hover .card-projet-img img {
    transform: scale(1.1);
}

.card-projet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.card-projet-body {
    padding: 25px;
}

.card-projet-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
    line-height: 1.4;
}

.card-projet-desc {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-projet-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    background: var(--color-light-bg);
    color: var(--color-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stat-projet {
    padding: 20px;
}

.stat-projet-nombre {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-green);
    margin-bottom: 10px;
}

.stat-projet-label {
    font-size: 1rem;
    color: var(--color-muted);
    font-weight: 500;
}

/* ============================================
   PAGE COWORKING
   ============================================ */
.card-tarif {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    height: 100%;
}

.card-tarif:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-tarif.popular {
    border: 2px solid var(--color-green);
    transform: scale(1.05);
}

.card-tarif.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-green);
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-tarif-icon {
    font-size: 2.5rem;
    color: var(--color-green);
    margin-bottom: 20px;
}

.card-tarif-duree {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.card-tarif-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-blue);
    margin-bottom: 20px;
}

.card-tarif-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.card-tarif-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text);
    border-bottom: 1px solid #eee;
}

.card-tarif-features li:last-child {
    border-bottom: none;
}

.card-tarif-features li i {
    color: var(--color-green);
    margin-right: 10px;
}

.btn-tarif {
    background: var(--color-green);
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-tarif:hover {
    background: var(--color-green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.avantage-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.avantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.avantage-icon {
    font-size: 2.5rem;
    color: var(--color-green);
    margin-bottom: 20px;
}

.avantage-titre {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.avantage-desc {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.equipements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipements-list li {
    padding: 12px 0;
    font-size: 1rem;
    color: var(--color-text);
    border-bottom: 1px solid #eee;
}

.equipements-list li:last-child {
    border-bottom: none;
}

.equipements-list li i {
    margin-right: 10px;
}

/* ============================================
   PAGE CONTACT
   ============================================ */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.contact-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.contact-info-content p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--color-green);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form-wrapper .form-label {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.contact-form-wrapper .form-control {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 64, 0.25);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ============================================
   RESPONSIVE PAGES
   ============================================ */
@media (max-width: 991px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .card-tarif.popular {
        transform: none;
    }
    
    .card-tarif.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}


/* ============================================
   PAGES SERVICES DÉTAILLÉES
   ============================================ */
.hero-icon {
    opacity: 0.9;
}

.check-icon {
    color: var(--color-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Card Programme (Formation) */
.card-programme {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-programme:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-programme-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.card-programme-desc {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-programme-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.card-programme-meta i {
    margin-right: 5px;
}

.card-programme-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-green);
    margin-bottom: 20px;
}

.btn-formation {
    background: var(--color-green);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: auto;
}

.btn-formation:hover {
    background: var(--color-green-dark);
    color: #fff;
}

.modalite-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

/* Card Conseil */
.card-conseil {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.card-conseil:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-conseil-icon {
    font-size: 2.5rem;
    color: var(--color-green);
    margin-bottom: 20px;
}

.card-conseil-icon {
    font-size: 2.5rem;
    color: var(--color-green);
    margin-bottom: 20px;
}

.card-conseil-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.card-conseil-desc {
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-conseil-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.card-conseil-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-conseil-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.card-conseil-list li i {
    color: var(--color-green);
    margin-right: 10px;
}

.etape-item {
    position: relative;
    padding: 20px;
}

.etape-line {
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--color-green);
    z-index: 0;
}

.etape-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

/* Card Développement */
.card-dev {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.card-dev:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-dev-header {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-green) 100%);
    padding: 25px;
    text-align: center;
    color: #fff;
}

.card-dev-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.card-dev-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
}

.card-dev-body {
    padding: 25px;
}

.card-dev-body h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    background: var(--color-light-bg);
    color: var(--color-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.feature-list li i {
    color: var(--color-green);
    margin-right: 10px;
}

.processus-dev {
    padding: 20px 10px;
}

.processus-dev-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.processus-dev h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-dark);
}

/* Card IT */
.card-it {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.card-it:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-it-icon {
    font-size: 2.5rem;
    color: var(--color-green);
    margin-bottom: 20px;
}

.card-it-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.card-it-desc {
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-it-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-it-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.card-it-list li i {
    color: var(--color-green);
    margin-right: 10px;
}

.card-formule {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.3s;
}

.card-formule:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-formule.popular {
    border: 2px solid var(--color-green);
    transform: scale(1.05);
}

.card-formule.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.formule-nom {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.formule-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-green);
    margin-bottom: 15px;
}

.formule-desc {
    color: var(--color-muted);
    margin-bottom: 25px;
}

.btn-formule {
    background: var(--color-green);
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-formule:hover {
    background: var(--color-green-dark);
    color: #fff;
}

/* Card Assistance */
.card-assistance {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.card-assistance:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-assistance-header {
    background: var(--color-dark-blue);
    padding: 25px;
    text-align: center;
    color: #fff;
}

.card-assistance-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--color-green);
}

.card-assistance-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
}

.card-assistance-body {
    padding: 25px;
}

.assistance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.assistance-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text);
    border-bottom: 1px solid #eee;
}

.assistance-list li:last-child {
    border-bottom: none;
}

.assistance-list li i {
    color: var(--color-green);
    margin-right: 10px;
}

.avantage-assistance h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .card-formule.popular {
        transform: none;
    }
    
    .card-formule.popular:hover {
        transform: translateY(-5px);
    }
}

/* ============================================
   MODAL INSCRIPTION
   ============================================ */
#modalInscription .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

#modalInscription .modal-header {
    border-radius: 16px 16px 0 0;
    padding: 20px 30px;
}

#modalInscription .modal-body {
    padding: 30px;
}

#modalInscription .form-label {
    font-size: 0.9rem;
    color: var(--color-dark);
}

#modalInscription .form-control,
#modalInscription .form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    transition: all 0.3s;
}

#modalInscription .form-control:focus,
#modalInscription .form-select:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 64, 0.25);
}

#modalInscription .form-check {
    border: 2px solid var(--color-green);
    background: rgba(46, 204, 64, 0.05);
}

#modalInscription .form-check-input:checked {
    background-color: var(--color-green);
    border-color: var(--color-green);
}

#btnSubmitInscription {
    transition: all 0.3s;
}

#btnSubmitInscription:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#btnSubmitInscription:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 64, 0.4);
}

/* Page Confirmation */
.success-icon {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 767px) {
    #modalInscription .modal-dialog {
        margin: 10px;
    }
    
    #modalInscription .modal-body {
        padding: 20px;
    }
}


/* Couleurs par défaut des icônes d'expertise */
.expertise-card .expertise-icon.icon-green i {
    color: var(--color-green) !important;
}

.expertise-card .expertise-icon.icon-blue i {
    color: var(--color-blue) !important;
}

/* Effet au survol (optionnel, garde l'animation) */
.expertise-card:hover .expertise-icon.icon-green i {
    color: var(--color-green-dark) !important;
    transform: scale(1.1);
}

.expertise-card:hover .expertise-icon.icon-blue i {
    color: #1560a8 !important;
    transform: scale(1.1);
}

.expertise-icon.icon-green i {
    color: var(--color-green);
}

.expertise-icon.icon-blue i {
    color: var(--color-blue);
}


/* ============================================
   ICÔNES VISIBLES POUR MISSION/VISION/VALEURS
   ============================================ */
.card-valeur-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.card-valeur-icon.icon-green {
    background: rgba(46, 204, 64, 0.1);
    border: 2px solid var(--color-green);
}

.card-valeur-icon.icon-green i {
    color: var(--color-green) !important;
    font-size: 2.2rem;
}

.card-valeur-icon.icon-blue {
    background: rgba(26, 111, 196, 0.1);
    border: 2px solid var(--color-blue);
}

.card-valeur-icon.icon-blue i {
    color: var(--color-blue) !important;
    font-size: 2.2rem;
}

/* Animation au survol */
.card-valeur:hover .card-valeur-icon.icon-green {
    background: var(--color-green);
    transform: scale(1.1);
}

.card-valeur:hover .card-valeur-icon.icon-green i {
    color: #fff !important;
}

.card-valeur:hover .card-valeur-icon.icon-blue {
    background: var(--color-blue);
    transform: scale(1.1);
}

.card-valeur:hover .card-valeur-icon.icon-blue i {
    color: #fff !important;
}


/* ============================================
   HERO PAGE À PROPOS AVEC IMAGE DE FOND
   ============================================ */
.about-hero {
    background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 58, 106, 0.85) 100%), 
                      url('../images/about-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

/* Optionnel : effet parallax plus marqué */
@media (min-width: 992px) {
    .about-hero {
        padding: 140px 0;
    }
}


/* ============================================
   HERO PAGE FORMATIONS AVEC IMAGE DE FOND
   ============================================ */
.formations-hero {
    background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(26, 58, 106, 0.85) 100%),
                      url('../images/formations-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
}

/* Effet de lumière subtile */
.formations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(46, 204, 64, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.formations-hero .container {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .formations-hero {
        padding: 60px 0;
        background-attachment: scroll; /* Désactiver parallax sur mobile */
    }
}


/* Formulaire de devis */
.hover-shadow {
    transition: all 0.3s;
    cursor: pointer;
}

.hover-shadow:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--color-green) !important;
}

.form-check-input:checked + .form-check-label {
    font-weight: 600;
    color: var(--color-green);
}

.devis-hero {
    background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(26, 58, 106, 0.85) 100%),
                      url('../images/devis-hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Style des selects du formulaire de devis */
.form-select {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    transition: all 0.3s;
    background-color: #fff;
}

.form-select:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 64, 0.25);
}

.form-select option {
    padding: 8px;
}

/* Hover effect sur les options */
.form-select option:hover {
    background-color: #f0f8ff;
}