/* =========================================
   PALETTE DE COULEURS ENRICHIES
========================================= */
:root {
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FB; 
    
    --text-dark: #0B0F19; /* Noir Premium */
    --text-grey: #64748B;
    
    /* Couleurs vibrantes pour les cartes */
    --color-dev: #0071E3;      /* Bleu Apple */
    --color-design: #E0005A;   /* Rose Magenta */
    --color-marketing: #F56300;/* Orange Vif */
    --color-formation: #8E2DE2;/* Violet */
    --color-support: #00A859;  /* Vert */
    
    /* Couleur Luxe (Promo & Navbar) */
    --navbar-bg: rgba(10, 17, 40, 0.95); /* Bleu nuit semi-transparent */
    --color-gold: #D4AF37;     /* Touche dorée pour le luxe */

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    overflow-x: hidden; 
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding { padding: 100px 0; }

h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* =========================================
   BANNIÈRE PROMO HAUT
========================================= */
.promo-banner {
    background-color: #050814;
    color: var(--bg-white);
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
}

.promo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.promo-badge {
    background-color: var(--color-gold);
    color: #000;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.promo-banner a {
    color: var(--color-gold);
    font-weight: 600;
    transition: var(--transition);
}

.promo-banner a:hover { color: #FFF; }

/* =========================================
   NAVBAR (Glassmorphism & Animée)
========================================= */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 25px 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--navbar-bg);
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; 
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--bg-white);
    position: relative;
    z-index: 2;
}

.navbar:not(.scrolled) .logo, 
.navbar:not(.scrolled) .nav-links a {
    color: var(--text-dark); 
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--bg-white); 
}

.logo span span {
    font-weight: 400;
    color: var(--color-dev);
}

/* CENTRAGE ABSOLU DU MENU */
.nav-links {
    display: flex;
    gap: 35px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 8px 0;
    transition: all 0.4s ease;
}

/* Ligne lumineuse au survol */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-dev);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--color-dev);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-dev) !important;
    transform: translateY(-2px);
}

.btn-premium {
    background: linear-gradient(135deg, var(--color-dev), var(--color-formation));
    color: var(--bg-white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
    position: relative;
    z-index: 2;
    display: inline-block;
}

.btn-premium:hover {
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.5);
    transform: translateY(-2px);
}

/* =========================================
   HERO SECTION (Accueil)
========================================= */
.hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
    background: var(--bg-white);
    overflow: hidden;
}

.relative-z { position: relative; z-index: 10; }

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
    animation: float 10s infinite alternate ease-in-out;
}

.glow-blue { width: 600px; height: 600px; background: var(--color-dev); top: -100px; left: -100px; }
.glow-magenta { width: 500px; height: 500px; background: var(--color-design); bottom: -50px; right: -50px; animation-delay: 2s; }
.glow-orange { width: 400px; height: 400px; background: var(--color-marketing); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 4s; }

@keyframes float {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(50px, 20px); }
}

.hero-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 30px; }

.text-gradient {
    background: linear-gradient(90deg, var(--color-dev), var(--color-design));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine { to { background-position: 200% center; } }

.hero-subtitle { font-size: 1.25rem; color: var(--text-grey); line-height: 1.6; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }

.btn-primary {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--color-dev), var(--color-formation));
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 113, 227, 0.3);
}

/* =========================================
   ESPACE PUB DÉFILANT (Slider Typographique)
========================================= */
.promo-slider {
    width: 100%;
    overflow: hidden;
    background: var(--bg-white);
    padding: 50px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex;
    width: calc(380px * 14); 
    animation: scroll 35s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused; 
}

.slide {
    width: 350px;
    height: 180px;
    margin: 0 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.slide:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.slide h3 { font-size: 1.3rem; margin-bottom: 8px; font-weight: 800; letter-spacing: 0.5px; z-index: 2; }
.slide p { font-size: 0.9rem; font-weight: 400; opacity: 0.9; line-height: 1.4; z-index: 2; }

.promo-tag {
    background: var(--color-gold);
    color: #000;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 12px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.icon-slide { font-size: 2rem; margin-bottom: 10px; z-index: 2; }

/* Dégradés premium slider */
.promo-web { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.promo-app { background: linear-gradient(135deg, var(--color-dev), #00c6ff); }
.promo-business { background: linear-gradient(135deg, var(--color-formation), #4a00e0); }
.promo-hardware { background: linear-gradient(135deg, #11998e, #38ef7d); }
.promo-software { background: linear-gradient(135deg, var(--text-dark), #434343); }
.promo-macpc { background: linear-gradient(135deg, var(--color-design), #ff758c); } 
.promo-mobile { background: linear-gradient(135deg, var(--color-marketing), #f12711); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-380px * 7)); }
}

/* =========================================
   SECTION SERVICES (Cartes page d'accueil)
========================================= */
.services { background-color: var(--bg-light); position: relative; z-index: 10; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.service-card { display: block; background: var(--bg-white); padding: 40px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); transition: var(--transition); border: 1px solid transparent; }
.card-icon { font-size: 2.5rem; margin-bottom: 20px; display: inline-block; padding: 15px; border-radius: 16px; background: var(--bg-light); transition: var(--transition); }
.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.service-card p { color: var(--text-grey); line-height: 1.6; }

.card-dev:hover { border-color: var(--color-dev); transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0, 113, 227, 0.15); }
.card-dev:hover .card-icon { background: var(--color-dev); color: white; transform: scale(1.1); }
.card-design:hover { border-color: var(--color-design); transform: translateY(-10px); box-shadow: 0 25px 50px rgba(224, 0, 90, 0.15); }
.card-design:hover .card-icon { background: var(--color-design); color: white; transform: scale(1.1); }
.card-marketing:hover { border-color: var(--color-marketing); transform: translateY(-10px); box-shadow: 0 25px 50px rgba(245, 99, 0, 0.15); }
.card-marketing:hover .card-icon { background: var(--color-marketing); color: white; transform: scale(1.1); }
.card-formation:hover { border-color: var(--color-formation); transform: translateY(-10px); box-shadow: 0 25px 50px rgba(142, 45, 226, 0.15); }
.card-formation:hover .card-icon { background: var(--color-formation); color: white; transform: scale(1.1); }
.card-support:hover { border-color: var(--color-support); transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0, 168, 89, 0.15); }
.card-support:hover .card-icon { background: var(--color-support); color: white; transform: scale(1.1); }
.card-business:hover { border-color: var(--text-dark); transform: translateY(-10px); box-shadow: 0 25px 50px rgba(11, 15, 25, 0.15); }
.card-business:hover .card-icon { background: var(--text-dark); color: white; transform: scale(1.1); }

/* =========================================
   ANIMATIONS D'APPARITION
========================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* =========================================
   FOOTER (Parfaitement Centré et Animé)
========================================= */
.footer { 
    background-color: var(--navbar-bg); 
    color: var(--bg-white); 
    padding: 80px 0 30px; 
    text-align: center; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 60px; 
    margin-bottom: 60px; 
    justify-items: center; 
}

.footer-logo { font-size: 24px; font-weight: 800; margin-bottom: 20px; }
.footer-logo span { font-weight: 400; color: var(--color-dev); }
.footer-brand p { color: rgba(255, 255, 255, 0.6); line-height: 1.6; max-width: 300px; margin: 0 auto; }
.footer-contact h3, .footer-links h3 { color: var(--bg-white); font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; }

.contact-item {
    display: flex;
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 18px;
    transition: var(--transition); 
    cursor: pointer;
}

.contact-item .icon {
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px; 
    transition: var(--transition);
}

.contact-item span:last-child {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    transition: var(--transition);
}

.contact-item:hover { transform: translateY(-5px); }
.contact-item:hover .icon { transform: scale(1.3); }
.contact-item:hover span:last-child { color: var(--color-dev); }

.footer-links a { 
    display: inline-block; 
    color: rgba(255, 255, 255, 0.7); 
    margin-bottom: 15px; 
    font-size: 14px; 
    transition: var(--transition); 
}

.footer-links a:hover { 
    color: var(--color-dev); 
    transform: translateY(-4px); 
}

.footer-bottom { 
    text-align: center; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 30px; 
    color: rgba(255, 255, 255, 0.5); 
    font-size: 13px; 
}

/* =========================================
   PAGE SERVICES : HERO & MISE EN PAGE
========================================= */
.page-hero {
    padding: 180px 0 80px 0;
    text-align: center;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.text-center { text-align: center; }

/* --- L'EFFET QUINCONCE (ZIG-ZAG) --- */
.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Ratio mis à jour : le texte a 60% d'espace, le visuel 40% */
.service-content { flex: 1.4; }

.service-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--text-dark); }
.service-content p { font-size: 1.1rem; color: var(--text-grey); line-height: 1.7; margin-bottom: 30px; }

/* Tags */
.service-tags { display: flex; gap: 12px; margin-bottom: 20px; }
.tag { padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.tag-dev { background: rgba(0, 113, 227, 0.1); color: var(--color-dev); }
.tag-business { background: rgba(11, 15, 25, 0.1); color: var(--text-dark); }
.tag-design { background: rgba(224, 0, 90, 0.1); color: var(--color-design); }
.tag-marketing { background: rgba(245, 99, 0, 0.1); color: var(--color-marketing); }
.tag-support { background: rgba(0, 168, 89, 0.1); color: var(--color-support); }

/* Listes */
.service-list { list-style: none; }
.service-list li { font-size: 1.05rem; color: var(--text-dark); font-weight: 600; margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px; }
.service-list li::before { content: '✅'; font-size: 1.2rem; margin-top: -2px; }

/* --- GESTION DES IMAGES ET ICÔNES DE SERVICES --- */
.service-visual {
    flex: 1; 
    height: 350px; /* Hauteur réduite pour un rendu plus fin */
    border-radius: 30px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-light); 
}

/* Configuration image */
.visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Configuration icône (Plus petite) */
.visual-icon {
    font-size: 5.5rem; 
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
    transition: var(--transition);
    z-index: 2; 
}

/* Hover effects */
.service-row:hover .service-visual { transform: translateY(-10px); box-shadow: 0 40px 80px rgba(0,0,0,0.15); }
.service-row:hover .visual-image { transform: scale(1.05); }
.service-row:hover .visual-icon { transform: scale(1.1); }

/* Dégradés pour les boîtes avec icônes */
.visual-business { background: linear-gradient(135deg, var(--text-dark), #434343); }
.visual-design { background: linear-gradient(135deg, var(--color-design), #ff758c); }
.visual-marketing { background: linear-gradient(135deg, var(--color-marketing), #f12711); }
.visual-support { background: linear-gradient(135deg, var(--color-support), #38ef7d); }

/* --- CALL TO ACTION (CTA FIN DE PAGE) --- */
.cta-section {
    background: linear-gradient(135deg, var(--navbar-bg), #1a264a);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    color: white;
    margin-bottom: 80px;
    box-shadow: 0 20px 50px rgba(10, 17, 40, 0.4);
}

.cta-section h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-section p { font-size: 1.2rem; opacity: 0.8; margin-bottom: 30px; }

/* RESPONSIVE (Pour les téléphones) */
@media (max-width: 900px) {
    .service-row, .service-row:nth-child(even) { flex-direction: column; text-align: center; gap: 40px; }
    .service-tags { justify-content: center; }
    .service-list li { justify-content: flex-start; text-align: left; }
    .service-visual { width: 100%; height: 280px; }
}

/* =========================================
   PAGE FORMATIONS : GRILLE ET CARTES
========================================= */
.formations-section {
    background-color: var(--bg-light);
}

.formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.formation-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.formation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.formation-header {
    padding: 30px;
    color: white;
    text-align: center;
    position: relative;
}

.formation-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.formation-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
}

.bg-gradient-dev { background: linear-gradient(135deg, var(--color-dev), #00c6ff); }
.bg-gradient-app { background: linear-gradient(135deg, #00A859, #38ef7d); }
.bg-gradient-support { background: linear-gradient(135deg, var(--text-grey), #a8b8d0); }
.bg-gradient-business { background: linear-gradient(135deg, var(--text-dark), #434343); }
.bg-gradient-design { background: linear-gradient(135deg, var(--color-design), #ff758c); }
.bg-gradient-marketing { background: linear-gradient(135deg, var(--color-marketing), #f12711); }
.bg-gradient-ai { background: linear-gradient(135deg, #6a11cb, #2575fc); } 

.formation-body {
    padding: 30px;
    flex-grow: 1;
}

.detail-item {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item strong {
    display: block; 
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

/* =========================================
   PAGE RÉALISATIONS : PORTFOLIO & FILTRES
========================================= */
.portfolio-section {
    background-color: var(--bg-light);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-grey);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--color-dev);
    color: var(--text-dark);
}

.filter-btn.active {
    background: var(--color-dev);
    border-color: var(--color-dev);
    color: var(--bg-white);
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.portfolio-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 17, 40, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.view-project-btn {
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-card:hover .view-project-btn {
    transform: translateY(0);
}

.view-project-btn:hover {
    background: white;
    color: var(--text-dark);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.4rem;
    margin: 15px 0 10px 0;
}

.portfolio-info p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tag-app { background: rgba(0, 168, 89, 0.1); color: #00A859; }

.hide-project { display: none; }
.show-project { animation: fadeIn 0.5s ease forwards; }

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.status-online { background: rgba(0, 168, 89, 0.9); color: white; }
.status-dev { background: rgba(245, 99, 0, 0.9); color: white; }
.status-upcoming { background: rgba(142, 45, 226, 0.9); color: white; }

/* =========================================
   PAGE CONTACT & RENDEZ-VOUS
========================================= */
.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 60px;
}

.contact-info h2 { font-size: 2.2rem; margin-bottom: 15px; }
.contact-desc { color: var(--text-grey); font-size: 1.05rem; line-height: 1.6; margin-bottom: 40px; }

.info-block { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }

.info-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.info-text h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-dark); }
.info-text p { color: var(--text-grey); font-size: 1rem; }

.whatsapp-box { margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.1); }
.whatsapp-box p { font-weight: 600; margin-bottom: 15px; }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366; 
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4); color: white; }

.wa-icon { font-size: 1.3rem; }

.premium-form {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.premium-form h3 { font-size: 1.8rem; margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 25px; }

.form-group label { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-dev);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

textarea.form-control { resize: vertical; }

.btn-submit {
    width: 100%;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(90deg, var(--color-dev), var(--color-formation));
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 113, 227, 0.3);
}

@media (max-width: 900px) {
    .contact-grid, .form-row { grid-template-columns: 1fr; }
    .premium-form { padding: 30px; }
}

/* --- ALIGNEMENT IMAGE + TEXTE LOGO --- */
.logo-with-img {
    display: flex;
    align-items: center;
    gap: 12px; 
}

.logo-icon {
    height: 50px; /* <--- C'EST ICI QUE LA TAILLE A CHANGÉ */
    width: auto;
    object-fit: contain;
}/* =========================================
   ADAPTATION MOBILE (SMARTPHONES & TABLETTES)
========================================= */
@media (max-width: 990px) {
    /* Menu Navigation Mobile */
    .navbar-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    .nav-links {
        position: relative;
        left: 0;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }
    .nav-actions {
        display: none; /* Cache le bouton RDV en haut pour aérer l'écran (il y en a un en bas) */
    }

    /* Textes Accueil Mobile */
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Espacements généraux Mobile */
    .container {
        padding: 0 20px;
    }
    .section-padding {
        padding: 60px 0;
    }

    /* Bannières et Formulaire Mobile */
    .promo-container {
        flex-direction: column;
        gap: 8px;
        padding: 5px;
    }
    .form-row {
        grid-template-columns: 1fr; /* Met les champs du formulaire les uns sous les autres */
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer Mobile */
    .footer-grid {
        gap: 30px;
        text-align: center;
    }
    .contact-item {
        justify-content: center;
    }
}