/* =============================================
   Theme: Hero Section for Prestations Page v2
   ============================================= */

.hero-prestations-v2 {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.hero-background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 25s ease-in-out infinite;
}

.hero-background-shapes .shape-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
}

.hero-background-shapes .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -5%;
    right: 15%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    animation-delay: -8s;
}

.hero-background-shapes .shape-3 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 5%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
    animation-delay: -15s;
}

.hero-prestations-v2 .hero-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-prestations-v2 .hero-split-content {
    animation: slideInLeft 1s ease-out;
}

.hero-prestations-v2 .hero-badge-wrapper .hero-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.12));
    color: #6366F1;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.2rem;
    font-size: 0.8rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.hero-prestations-v2 .hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.25;
    color: #1a202c;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hero-prestations-v2 .hero-title-highlight {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-prestations-v2 .hero-text {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
    font-weight: 400;
}

.hero-prestations-v2 .hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-prestations-v2 .btn-primary {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: #fff;
    padding: 13px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.hero-prestations-v2 .btn-primary:hover {
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.hero-prestations-v2 .btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #1a202c;
    padding: 13px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(99, 102, 241, 0.25);
    backdrop-filter: blur(10px);
}

.hero-prestations-v2 .btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #6366F1;
    transform: translateY(-2px);
}

.hero-prestations-v2 .btn-icon {
    margin-left: 8px;
    display: inline-block;
}

.hero-split-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    animation: fadeInRight 1s ease-out;
}

.hero-split-visual .visual-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-split-visual .visual-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hero-split-visual .visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-split-visual .card-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.hero-split-visual .card-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
.hero-split-visual .card-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
.hero-split-visual .card-3 { grid-column: 2 / 3; grid-row: 2 / 3; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-prestations-v2 .hero-split-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-prestations-v2 .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-split-visual {
        margin-top: 3rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .hero-prestations-v2 {
        padding: 80px 0;
    }

    .hero-prestations-v2 .hero-title {
        font-size: 2.5rem;
    }

    .hero-prestations-v2 .hero-text {
        font-size: 1.1rem;
    }

    .hero-prestations-v2 .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
