/* Section Simulateurs Vendoprone - Design Moderne avec Images */

.vendoprone-simulateurs-modern {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    font-family: 'Inter', sans-serif;
}

/* Background Elements */
.simulateurs-modern-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(211, 84, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(211, 84, 0, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: 0;
}

.simulateurs-modern-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    z-index: 0;
    animation: floatOrbSimulateurs 30s ease-in-out infinite;
}

.simulateurs-modern-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    top: -15%;
    right: -15%;
    background: radial-gradient(circle, rgba(211, 84, 0, 0.12) 0%, transparent 70%);
    animation-duration: 35s;
}

.simulateurs-modern-gradient-orb.orb-2 {
    width: 550px;
    height: 550px;
    bottom: -15%;
    left: -15%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
    animation-duration: 40s;
    animation-direction: reverse;
}

@keyframes floatOrbSimulateurs {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
    }
}

/* Header Section */
.simulateurs-modern-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
}

.simulateurs-modern-header .section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.12) 0%, rgba(230, 126, 34, 0.12) 100%);
    border: 1px solid rgba(211, 84, 0, 0.25);
    border-radius: 50px;
    color: #d35400;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.simulateurs-modern-header h2 {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.simulateurs-modern-header p {
    font-size: 20px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .simulateurs-modern-header h2 {
        font-size: 40px;
    }
    
    .simulateurs-modern-header p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .simulateurs-modern-header h2 {
        font-size: 32px;
    }
    
    .simulateurs-modern-header p {
        font-size: 16px;
    }
}

/* Simulateurs Grid */
.simulateurs-modern-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .simulateurs-modern-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Simulateur Card */
.simulateur-modern-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(211, 84, 0, 0.08);
}

.simulateur-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.05) 0%, rgba(230, 126, 34, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.simulateur-modern-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 24px 80px rgba(211, 84, 0, 0.2);
    border-color: rgba(211, 84, 0, 0.2);
}

.simulateur-modern-card:hover::before {
    opacity: 1;
}

/* Simulateur Image */
.simulateur-modern-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.simulateur-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.simulateur-modern-card:hover .simulateur-modern-image img {
    transform: scale(1.15);
}

/* Custom Professional Simulator Interfaces - Created with CSS */
.simulateur-modern-image.budget-publicitaire {
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simulateur-modern-image.budget-publicitaire::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect fill='%231a1a2e' width='400' height='300'/%3E%3Cg fill='none' stroke='%23333' stroke-width='1'%3E%3Cline x1='0' y1='50' x2='400' y2='50'/%3E%3Cline x1='0' y1='100' x2='400' y2='100'/%3E%3Cline x1='0' y1='150' x2='400' y2='150'/%3E%3Cline x1='0' y1='200' x2='400' y2='200'/%3E%3Cline x1='0' y1='250' x2='400' y2='250'/%3E%3C/g%3E%3Cg fill='%23d35400'%3E%3Crect x='40' y='200' width='60' height='50'/%3E%3Crect x='120' y='180' width='60' height='70'/%3E%3Crect x='200' y='160' width='60' height='90'/%3E%3Crect x='280' y='140' width='60' height='110'/%3E%3C/g%3E%3Ctext x='200' y='30' fill='%23fff' font-family='monospace' font-size='14' text-anchor='middle'%3EROI Calculator%3C/text%3E%3Ctext x='50' y='280' fill='%23999' font-family='monospace' font-size='10'%3EBudget: 5000€%3C/text%3E%3Ctext x='200' y='280' fill='%23999' font-family='monospace' font-size='10'%3EReturn: 12500€%3C/text%3E%3C/svg%3E") center/cover no-repeat;
    opacity: 0.9;
}

.simulateur-modern-image.budget-publicitaire::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 40px;
    background: rgba(211, 84, 0, 0.2);
    border: 1px solid rgba(211, 84, 0, 0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #d35400;
}

.simulateur-modern-image.performance-seo {
    background: #0f1419;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simulateur-modern-image.performance-seo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect fill='%230f1419' width='400' height='300'/%3E%3Cg stroke='%23333' stroke-width='1' fill='none'%3E%3Cline x1='50' y1='250' x2='350' y2='250'/%3E%3Cline x1='50' y1='250' x2='50' y2='50'/%3E%3C/g%3E%3Cpolyline points='50,220 100,200 150,180 200,150 250,120 300,90 350,70' stroke='%23d35400' stroke-width='3' fill='none'/%3E%3Ccircle cx='50' cy='220' r='3' fill='%23d35400'/%3E%3Ccircle cx='100' cy='200' r='3' fill='%23d35400'/%3E%3Ccircle cx='150' cy='180' r='3' fill='%23d35400'/%3E%3Ccircle cx='200' cy='150' r='3' fill='%23d35400'/%3E%3Ccircle cx='250' cy='120' r='3' fill='%23d35400'/%3E%3Ccircle cx='300' cy='90' r='3' fill='%23d35400'/%3E%3Ccircle cx='350' cy='70' r='3' fill='%23d35400'/%3E%3Ctext x='200' y='30' fill='%23fff' font-family='monospace' font-size='14' text-anchor='middle'%3ESEO Growth Trajectory%3C/text%3E%3Ctext x='50' y='270' fill='%23999' font-family='monospace' font-size='9'%3EM0%3C/text%3E%3Ctext x='200' y='270' fill='%23999' font-family='monospace' font-size='9'%3EM12%3C/text%3E%3Ctext x='350' y='270' fill='%23999' font-family='monospace' font-size='9'%3EM24%3C/text%3E%3Ctext x='360' y='65' fill='%23d35400' font-family='monospace' font-size='10'%3E+180%%3C/text%3E%3C/svg%3E") center/cover no-repeat;
    opacity: 0.9;
}

.simulateur-modern-image.optimisation-data {
    background: #1e1e2e;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simulateur-modern-image.optimisation-data::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect fill='%231e1e2e' width='400' height='300'/%3E%3Cg fill='none' stroke='%23333' stroke-width='1'%3E%3Cline x1='0' y1='50' x2='400' y2='50'/%3E%3Cline x1='0' y1='100' x2='400' y2='100'/%3E%3Cline x1='0' y1='150' x2='400' y2='150'/%3E%3Cline x1='0' y1='200' x2='400' y2='200'/%3E%3Cline x1='0' y1='250' x2='400' y2='250'/%3E%3C/g%3E%3Cg%3E%3Crect x='30' y='180' width='50' height='70' fill='%234facfe'/%3E%3Crect x='100' y='150' width='50' height='100' fill='%2300f2fe'/%3E%3Crect x='170' y='120' width='50' height='130' fill='%2343e97b'/%3E%3Crect x='240' y='100' width='50' height='150' fill='%23d35400'/%3E%3Crect x='310' y='80' width='50' height='170' fill='%23e67e22'/%3E%3C/g%3E%3Ctext x='200' y='30' fill='%23fff' font-family='monospace' font-size='14' text-anchor='middle'%3EData Readiness Score%3C/text%3E%3Ctext x='55' y='270' fill='%23999' font-family='monospace' font-size='9'%3E25%%3C/text%3E%3Ctext x='125' y='270' fill='%23999' font-family='monospace' font-size='9'%3E40%%3C/text%3E%3Ctext x='195' y='270' fill='%23999' font-family='monospace' font-size='9'%3E60%%3C/text%3E%3Ctext x='265' y='270' fill='%23999' font-family='monospace' font-size='9'%3E80%%3C/text%3E%3Ctext x='335' y='270' fill='%23999' font-family='monospace' font-size='9'%3E95%%3C/text%3E%3C/svg%3E") center/cover no-repeat;
    opacity: 0.9;
}

.simulateur-modern-image.email-marketing {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simulateur-modern-image.email-marketing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect fill='%231a1a1a' width='400' height='300'/%3E%3Cg fill='none' stroke='%23333' stroke-width='1'%3E%3Cline x1='0' y1='60' x2='400' y2='60'/%3E%3Cline x1='0' y1='120' x2='400' y2='120'/%3E%3Cline x1='0' y1='180' x2='400' y2='180'/%3E%3Cline x1='0' y1='240' x2='400' y2='240'/%3E%3C/g%3E%3Crect x='30' y='80' width='340' height='30' rx='3' fill='%23222' stroke='%23444'/%3E%3Crect x='30' y='140' width='340' height='30' rx='3' fill='%23222' stroke='%23444'/%3E%3Crect x='30' y='200' width='340' height='30' rx='3' fill='%23222' stroke='%23444'/%3E%3Crect x='30' y='260' width='340' height='30' rx='3' fill='%23222' stroke='%23444'/%3E%3Ccircle cx='50' cy='95' r='8' fill='%23d35400'/%3E%3Ccircle cx='50' cy='155' r='8' fill='%23d35400'/%3E%3Ccircle cx='50' cy='215' r='8' fill='%23d35400'/%3E%3Ccircle cx='50' cy='275' r='8' fill='%23d35400'/%3E%3Crect x='70' y='88' width='120' height='14' rx='2' fill='%23444'/%3E%3Crect x='70' y='148' width='120' height='14' rx='2' fill='%23444'/%3E%3Crect x='70' y='208' width='120' height='14' rx='2' fill='%23444'/%3E%3Crect x='70' y='268' width='120' height='14' rx='2' fill='%23444'/%3E%3Ctext x='200' y='30' fill='%23fff' font-family='monospace' font-size='14' text-anchor='middle'%3EEmail Automation Dashboard%3C/text%3E%3Ctext x='300' y='98' fill='%23999' font-family='monospace' font-size='9'%3EOpen: 42%%3C/text%3E%3Ctext x='300' y='158' fill='%23999' font-family='monospace' font-size='9'%3EOpen: 38%%3C/text%3E%3Ctext x='300' y='218' fill='%23999' font-family='monospace' font-size='9'%3EOpen: 45%%3C/text%3E%3Ctext x='300' y='278' fill='%23999' font-family='monospace' font-size='9'%3EOpen: 52%%3C/text%3E%3C/svg%3E") center/cover no-repeat;
    opacity: 0.9;
}

/* Overlay gradient for custom images */
.simulateur-modern-image.budget-publicitaire::after,
.simulateur-modern-image.performance-seo::after,
.simulateur-modern-image.optimisation-data::after,
.simulateur-modern-image.email-marketing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.simulateur-modern-card:hover .simulateur-modern-image::after {
    opacity: 1;
}

/* Badge Type */
.simulateur-modern-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #d35400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 3;
    transition: all 0.4s ease;
}

.simulateur-modern-card:hover .simulateur-modern-badge {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(211, 84, 0, 0.2);
}

/* Icon Overlay */
.simulateur-modern-icon {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transition: all 0.5s ease;
}

.simulateur-modern-icon svg {
    width: 40px;
    height: 40px;
    color: #d35400;
}

.simulateur-modern-card:hover .simulateur-modern-icon {
    transform: scale(1.15) rotate(8deg);
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(211, 84, 0, 0.25);
}

/* Simulateur Content */
.simulateur-modern-content {
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.simulateur-modern-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.simulateur-modern-card:hover .simulateur-modern-content h3 {
    color: #d35400;
}

.simulateur-modern-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
    flex: 1;
}

/* Simulateur CTA Button */
.simulateur-modern-cta {
    margin-top: auto;
}

.simulateur-modern-cta .rts-btn {
    width: 100%;
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.simulateur-modern-cta .rts-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(211, 84, 0, 0.35);
    background: linear-gradient(135deg, #a0410a 0%, #d35400 100%);
}

.simulateur-modern-cta .rts-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.simulateur-modern-cta .rts-btn:hover svg {
    transform: translateX(4px);
}

.simulateur-modern-cta .rts-btn svg path {
    stroke: currentColor;
    fill: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .vendoprone-simulateurs-modern {
        padding: 80px 0;
    }
    
    .simulateurs-modern-header {
        margin-bottom: 60px;
    }
    
    .simulateur-modern-image {
        height: 280px;
    }
    
    .simulateur-modern-content {
        padding: 28px;
    }
    
    .simulateur-modern-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .vendoprone-simulateurs-modern {
        padding: 60px 0;
    }
    
    .simulateurs-modern-header {
        margin-bottom: 40px;
    }
    
    .simulateur-modern-image {
        height: 240px;
    }
    
    .simulateur-modern-badge {
        top: 16px;
        left: 16px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .simulateur-modern-icon {
        width: 60px;
        height: 60px;
        bottom: 16px;
        right: 16px;
        border-radius: 16px;
    }
    
    .simulateur-modern-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .simulateur-modern-content {
        padding: 24px;
    }
    
    .simulateur-modern-content h3 {
        font-size: 22px;
    }
    
    .simulateur-modern-content p {
        font-size: 16px;
    }
}

/* Animation on Scroll */
.simulateur-modern-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUpSimulateurs 0.7s ease forwards;
}

.simulateur-modern-card:nth-child(1) {
    animation-delay: 0.1s;
}

.simulateur-modern-card:nth-child(2) {
    animation-delay: 0.2s;
}

.simulateur-modern-card:nth-child(3) {
    animation-delay: 0.3s;
}

.simulateur-modern-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUpSimulateurs {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative Elements */
.simulateur-modern-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(211, 84, 0, 0.05) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.simulateur-modern-card:hover::after {
    opacity: 1;
}

