/* ========================================
   HERO CONVERSION - STYLES PERSONNALISÉS
   ======================================== */

/* Section hero de base */
.hero-conversion {
    padding: 200px 0 80px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-conversion.hero-home {
    padding: 200px 0 100px;
}

/* Hero content */
.hero-conversion .hero-content {
    position: relative;
    z-index: 2;
}

/* Badges */
.hero-conversion .badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

/* Titres */
.hero-conversion h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.hero-conversion .lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

/* Benefits list */
.hero-conversion .key-benefits {
    margin-bottom: 1.5rem;
}

.hero-conversion .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.hero-conversion .benefit-item i {
    color: #fbbf24;
    font-size: 24px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.hero-conversion .benefit-item div {
    color: #ffffff;
}

/* Boutons CTA */
.hero-conversion .cta-buttons {
    margin-top: 30px;
}

.hero-conversion .btn-primary-hero {
    background: #ffffff !important;
    color: #667eea !important;
    border: none !important;
    padding: 15px 35px !important;
    font-size: 18px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.hero-conversion .btn-primary-hero:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2) !important;
    color: #667eea !important;
    background: #ffffff !important;
}

.hero-conversion .btn-secondary-hero {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 15px 35px !important;
    font-size: 18px !important;
    border-radius: 8px !important;
    backdrop-filter: blur(10px) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.hero-conversion .btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    border-color: white !important;
}

/* Hero visual (carte photo) */
.hero-conversion .hero-visual {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.hero-conversion .hero-visual img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    object-position: center top;
}

.hero-conversion .hero-visual h2 {
    color: #ffffff;
    letter-spacing: 1.5px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.hero-conversion .hero-visual p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Mini testimonial */
.hero-conversion .mini-testimonial {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    border-left: 4px solid #fbbf24;
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
}

.hero-conversion .mini-testimonial p:first-child {
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero-conversion .mini-testimonial p:last-child {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* ========================================
   CARTES DE CONTACT
   ======================================== */

.single-contact-card {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.single-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.single-contact-card .top-part {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.single-contact-card .top-part .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.single-contact-card.card1 .top-part .icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.single-contact-card.card2 .top-part .icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.single-contact-card.card3 .top-part .icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.single-contact-card .top-part .title h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.single-contact-card .top-part .title span {
    font-size: 14px;
    color: #6c757d;
}

.single-contact-card .bottom-part {
    padding: 0 30px 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-contact-card .bottom-part .info {
    flex: 1;
}

.single-contact-card .bottom-part .info p {
    margin-bottom: 5px;
    font-size: 16px;
}

.single-contact-card .bottom-part .info p a {
    font-size: 20px;
    font-weight: 600;
}

.single-contact-card .bottom-part .info a {
    color: #1a1a2e;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-contact-card.card1 .bottom-part .info a:hover {
    color: #667eea;
}

.single-contact-card.card2 .bottom-part .info a:hover {
    color: #fbbf24;
}

.single-contact-card.card3 .bottom-part .info a:hover {
    color: #10b981;
}

.single-contact-card .bottom-part .info small {
    font-size: 12px;
}

.single-contact-card .bottom-part .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.single-contact-card.card1 .bottom-part .icon {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.single-contact-card.card2 .bottom-part .icon {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.single-contact-card.card3 .bottom-part .icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.single-contact-card:hover .bottom-part .icon {
    transform: translateX(5px);
}

.single-contact-card .bottom-part .icon a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   VARIANTES DE COULEURS HERO
   ======================================== */

/* Backend - Bleu foncé */
.hero-conversion.hero-backend {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.88) 0%, rgba(29, 78, 216, 0.90) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-backend .btn-primary-hero {
    color: #1e40af !important;
}

.hero-conversion.hero-backend .btn-primary-hero:hover {
    color: #1e40af !important;
}

/* Frontend - Vert */
.hero-conversion.hero-frontend {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.85) 0%, rgba(5, 150, 105, 0.88) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-frontend .btn-primary-hero {
    color: #10b981 !important;
}

.hero-conversion.hero-frontend .btn-primary-hero:hover {
    color: #10b981 !important;
}

/* WordPress - Bleu WP */
.hero-conversion.hero-wordpress {
    background: linear-gradient(135deg, rgba(0, 115, 170, 0.88) 0%, rgba(0, 93, 138, 0.90) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-wordpress .btn-primary-hero {
    color: #0073aa !important;
}

.hero-conversion.hero-wordpress .btn-primary-hero:hover {
    color: #0073aa !important;
}

/* App - Indigo */
.hero-conversion.hero-app {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(79, 70, 229, 0.88) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-app .btn-primary-hero {
    color: #6366f1 !important;
}

.hero-conversion.hero-app .btn-primary-hero:hover {
    color: #6366f1 !important;
}

/* SysAdmin - Orange */
.hero-conversion.hero-sysadmin {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.85) 0%, rgba(217, 119, 6, 0.88) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-sysadmin .btn-primary-hero {
    color: #f59e0b !important;
}

.hero-conversion.hero-sysadmin .btn-primary-hero:hover {
    color: #f59e0b !important;
}

/* Info - Cyan */
.hero-conversion.hero-info {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.85) 0%, rgba(2, 132, 199, 0.88) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-info .btn-primary-hero {
    color: #0ea5e9 !important;
}

.hero-conversion.hero-info .btn-primary-hero:hover {
    color: #0ea5e9 !important;
}

/* Aikido - Rouge */
.hero-conversion.hero-aikido {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.85) 0%, rgba(192, 57, 43, 0.88) 100%), url('/assets_perso/img/aikido/bandeau_aikido.jpg') center/cover;
}

.hero-conversion.hero-aikido .btn-primary-hero {
    color: #e74c3c !important;
}

.hero-conversion.hero-aikido .btn-primary-hero:hover {
    color: #e74c3c !important;
}

/* Blog - Violet */
.hero-conversion.hero-blog {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.85) 0%, rgba(124, 58, 237, 0.88) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-blog .btn-primary-hero {
    color: #8b5cf6 !important;
}

.hero-conversion.hero-blog .btn-primary-hero:hover {
    color: #8b5cf6 !important;
}

/* Contact/Home - Violet/Rose */
.hero-conversion.hero-home {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.88) 50%, rgba(240, 147, 251, 0.85) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-contact {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.88) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-home .btn-primary-hero,
.hero-conversion.hero-contact .btn-primary-hero {
    color: #667eea !important;
}

.hero-conversion.hero-home .btn-primary-hero:hover,
.hero-conversion.hero-contact .btn-primary-hero:hover {
    color: #667eea !important;
}

/* Portfolio - Teal/Turquoise */
.hero-conversion.hero-portfolio {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.85) 0%, rgba(13, 148, 136, 0.88) 100%), url('/assets_perso/img/bandeau_julien_boisson.webp') center/cover;
}

.hero-conversion.hero-portfolio .btn-primary-hero {
    color: #14b8a6 !important;
}

.hero-conversion.hero-portfolio .btn-primary-hero:hover {
    color: #14b8a6 !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .hero-conversion {
        padding: 140px 0 60px;
    }
    
    .hero-conversion.hero-home {
        padding: 140px 0 80px;
    }
    
    .hero-conversion h1 {
        font-size: 32px;
    }
    
    .hero-conversion .lead {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .hero-conversion {
        padding: 120px 0 50px;
    }
    
    .hero-conversion h1 {
        font-size: 28px;
    }
    
    .hero-conversion .btn-primary-hero,
    .hero-conversion .btn-secondary-hero {
        padding: 12px 25px;
        font-size: 16px;
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .single-contact-card .top-part,
    .single-contact-card .bottom-part {
        padding: 20px;
    }
}
