/* ===== CELER - sv_1_compta.css HARMONISÉ ===== */
/* 
CHARTE COULEURS OFFICIELLE CELER :
- Bleu Marine Primary: #1B3B5F
- Bleu Marine Secondary: #2d5280  
- Cuivré Accent: #B87854
- Cuivré Hover: #a36848
- Gris Secondary: #4A5568
- Gris Light: #6b7280
- Blanc Cassé: #f8f9fa
- Bordures: #e5e7eb
*/


/* ===== SECTION OFFRES ===== */
.offers-section {
    padding: 100px 40px;
    background: #f3efec;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4A5568;
    max-width: 800px;
    margin: 0 auto;
}

/* Avantages exclusifs */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
   
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.advantage-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.advantage-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.advantage-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #B87854;
    margin-bottom: 10px;
}

.advantage-text {
    color: #4A5568;
    line-height: 1.6;
}

/* Cards des packs */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pack-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pack-card.featured {
    border-color: #B87854;
    transform: scale(1.05);
}

.pack-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pack-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #B87854 0%, #a36848 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pack-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.pack-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B3B5F;
    text-align: center;
    margin-bottom: 10px;
}

.pack-subtitle {
    color: #4A5568;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pack-profile {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #1B3B5F;
    border-left: 3px solid #B87854;
}

.pack-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.price-label {
    color: #B87854;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1B3B5F;
}

.price-unit {
    color: #4A5568;
    font-size: 0.9rem;
}

.pack-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.pack-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.pack-features li:last-child {
    border-bottom: none;
}

.pack-features i {
    color: #B87854;
    margin-top: 2px;
    font-size: 1.1rem;
}

.pack-features.featured i {
    color: #1B3B5F;
}

.pack-sectors {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.sectors-title {
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sectors-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sector-item {
    background: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    border-left: 3px solid #B87854;
}

.sector-name {
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 4px;
}

.sector-description {
    color: #4A5568;
    font-size: 0.8rem;
}

.pack-options {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.options-title {
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 10px;
}

.option-item {
    color: #4A5568;
    margin-bottom: 5px;
}

.pack-cta {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pack-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 59, 95, 0.3);
}

.pack-card.featured .pack-cta {
    background: linear-gradient(135deg, #B87854 0%, #a36848 100%);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 40px;
    background: rgb(251, 247, 245);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 60px;
}

.process-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-step {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #B87854 0%, #a36848 100%);
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(184, 120, 84, 0.3);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 10px;
}

.step-description {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.5;
}

.process-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-grid-bottom .process-step:nth-child(1) { animation-delay: 0.8s; }
.process-grid-bottom .process-step:nth-child(2) { animation-delay: 1.0s; }
.process-grid-bottom .process-step:nth-child(3) { animation-delay: 1.2s; }

/* Process mobile */
.process-mobile {
    display: none;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 40px;
    background: rgb(251, 247, 245);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 20px;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 50px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.faq-question h3 {
    color: #1B3B5F;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #B87854;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    transition: transform 0.3s ease;
    color: white;
    font-weight: 300;
}

.faq-icon::before {
    content: '+';
    font-size: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-highlight {
    color: #B87854;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .packs-grid {
        grid-template-columns: 1fr;
    }

    .pack-card.featured {
        transform: scale(1);
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .process-grid-desktop,
    .process-grid-bottom {
        display: none;
    }

    .process-mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 60px;
    }

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

    .hero-logo-c {
        font-size: 40px;
    }

    .hero-logo-eler {
        font-size: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .offers-section,
    .process-section,
    .faq-section {
        padding: 60px 20px;
    }

    .btn-primary, 
    .btn-secondary {
        width: 100%;
        padding: 14px 0;
    }
}

/* ===== HEADER SECTION SECTEURS ===== */

.secteurs-details {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Effet de fond décoratif */
.secteurs-details::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 120, 84, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.secteurs-details::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 59, 95, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Titre de la section */
.section-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B3B5F;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #B87854 0%, #1B3B5F 100%);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: expandLine 1s ease-out;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Introduction de la section */
.secteurs-intro {
    text-align: center;
    color: #4A5568;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.secteurs-intro::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(184, 120, 84, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.secteurs-intro::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-size: 4rem;
    color: rgba(184, 120, 84, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Badge décoratif optionnel */
.secteurs-details .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(184, 120, 84, 0.1) 0%, rgba(27, 59, 95, 0.1) 100%);
    color: #B87854;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 30px;
    display: block;
    width: fit-content;
    border: 2px solid rgba(184, 120, 84, 0.2);
    transition: all 0.3s ease;
}

.secteurs-details .section-badge:hover {
    background: linear-gradient(135deg, #B87854 0%, #1B3B5F 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 120, 84, 0.3);
}

/* Version alternative avec icône */
.section-subtitle-wrapper {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-subtitle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B87854 0%, #a36848 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(184, 120, 84, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(184, 120, 84, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(184, 120, 84, 0.4);
    }
}

.section-subtitle-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

/* Animation d'apparition au scroll */
.secteurs-details.visible .section-subtitle {
    animation: fadeInDown 0.8s ease-out;
}

.secteurs-details.visible .secteurs-intro {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .secteurs-details {
        padding: 40px 20px;
        margin-top: 60px;
        border-radius: 16px;
    }

    .section-subtitle {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-subtitle::after {
        width: 60px;
        margin-top: 15px;
    }

    .secteurs-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .secteurs-intro::before,
    .secteurs-intro::after {
        font-size: 3rem;
    }

    .section-subtitle-icon {
        width: 50px;
        height: 50px;
    }

    .section-subtitle-icon svg {
        width: 25px;
        height: 25px;
    }
}


    /* Icônes secteurs modernes avec animation */
.secteur-icon-modern {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(184, 120, 84, 0.1) 0%, rgba(27, 59, 95, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.secteur-icon-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(184, 120, 84, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.secteur-card:hover .secteur-icon-modern::before {
    width: 200px;
    height: 200px;
}

.secteur-icon-modern svg {
    width: 32px;
    height: 32px;
    stroke: #1B3B5F;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.secteur-card:hover .secteur-icon-modern {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(184, 120, 84, 0.2);
    background: linear-gradient(135deg, #B87854 0%, #1B3B5F 100%);
}

.secteur-card:hover .secteur-icon-modern svg {
    stroke: white;
    transform: rotate(5deg) scale(1.1);
}

/* Animation des cartes secteurs */
.secteur-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.secteur-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B87854 0%, #1B3B5F 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.secteur-card:hover::before {
    transform: scaleX(1);
}

.secteur-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 59, 95, 0.12);
    border-color: rgba(184, 120, 84, 0.3);
}

/* Animation du titre des secteurs */
.secteur-card h4 {
    color: #1B3B5F;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.secteur-card:hover h4 {
    color: #B87854;
}

.secteur-card h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B87854 0%, #1B3B5F 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.secteur-card:hover h4::after {
    width: 100%;
}

/* Liste des secteurs avec animation */
.secteur-list {
    list-style: none;
    margin-bottom: 20px;
}

.secteur-list li {
    padding: 12px 0;
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.secteur-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: #B87854;
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.secteur-card:hover .secteur-list li::before {
    width: 4px;
}

.secteur-card:hover .secteur-list li {
    padding-left: 12px;
    color: #1B3B5F;
}

.secteur-list li:last-child {
    border-bottom: none;
}

.secteur-list strong {
    color: #1B3B5F;
    font-weight: 700;
    transition: color 0.3s ease;
}

.secteur-card:hover .secteur-list strong {
    color: #B87854;
}

/* Note secteur avec animation */
.secteur-note {
    color: #B87854;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 20px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(184, 120, 84, 0.05) 0%, rgba(184, 120, 84, 0.1) 100%);
    border-radius: 8px;
    border-left: 3px solid #B87854;
    text-align: center;
    transition: all 0.3s ease;
}

.secteur-card:hover .secteur-note {
    background: linear-gradient(135deg, rgba(184, 120, 84, 0.1) 0%, rgba(184, 120, 84, 0.15) 100%);
    transform: translateX(5px);
}

/* Grille responsive avec animations */
.secteurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Animation d'apparition en cascade */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.secteur-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.secteur-card:nth-child(1) { animation-delay: 0.1s; }
.secteur-card:nth-child(2) { animation-delay: 0.2s; }
.secteur-card:nth-child(3) { animation-delay: 0.3s; }
.secteur-card:nth-child(4) { animation-delay: 0.4s; }
.secteur-card:nth-child(5) { animation-delay: 0.5s; }
.secteur-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .secteurs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .secteur-card {
        padding: 25px;
    }

    .secteur-icon-modern {
        width: 56px;
        height: 56px;
    }

    .secteur-icon-modern svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== LIENS ET BOUTONS MANQUANTS ===== */

/* Lien "Voir les spécificités par métier" */
.pack-detail-link {
    display: block;
    text-align: center;
    color: #B87854;
    font-size: 0.9rem;
    margin: 20px 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.pack-detail-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B87854 0%, #1B3B5F 100%);
    transition: width 0.3s ease;
}

.pack-detail-link:hover {
    color: #a36848;
}

.pack-detail-link:hover::after {
    width: 80%;
}

/* Bouton "Voir les options facultatives" */
.options-toggle {
    width: 100%;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    color: #4A5568;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin: 15px 0 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.options-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(184, 120, 84, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.options-toggle:hover::before {
    width: 300px;
    height: 300px;
}

.options-toggle:hover {
    background: white;
    border-color: #B87854;
    color: #1B3B5F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 120, 84, 0.15);
}

.options-toggle.active {
    background: linear-gradient(135deg, #B87854 0%, #a36848 100%);
    color: white;
    border-color: #B87854;
}

.options-toggle.active:hover {
    background: linear-gradient(135deg, #a36848 0%, #B87854 100%);
}

/* Options cachées par défaut */
.pack-options {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 15px;
}

.pack-options.hidden {
    display: block;
    max-height: 0;
    opacity: 0;
}

.pack-options:not(.hidden) {
    max-height: 500px;
    opacity: 1;
    margin-top: 10px;
}

/* Items d'options */
.option-item {
    color: #4A5568;
    font-size: 0.85rem;
    padding: 8px 0;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.option-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #B87854;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.option-item:hover {
    color: #1B3B5F;
    padding-left: 25px;
}

.option-item:hover::before {
    transform: translateX(3px);
}

/* Section CTA "Votre secteur n'est pas listé" */
.secteurs-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
    position: relative;
}

.secteurs-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #B87854 50%, transparent 100%);
}

.secteurs-cta p {
    color: #4A5568;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.secteurs-cta a {
    color: #B87854;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.secteurs-cta a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B87854 0%, #1B3B5F 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.secteurs-cta a:hover {
    color: #a36848;
}

.secteurs-cta a:hover::after {
    width: 100%;
}

/* Animation de la flèche dans le lien */
.secteurs-cta a:hover {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .pack-detail-link {
        font-size: 0.85rem;
    }

    .options-toggle {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .secteurs-cta {
        margin-top: 40px;
        padding-top: 30px;
    }

    .secteurs-cta p {
        font-size: 1rem;
    }
}
/* ===============================================
   CELER - Ajout d'images d'arrière-plan
   À ajouter APRÈS vos CSS existants
   =============================================== */

/* ===== HERO SECTION ===== */
.hero-template {
    position: relative;
    overflow: hidden;
}

.hero-template::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../IMG/consulting-service-card3.jpeg') center/cover;
    opacity: 0.12;
    z-index: 0;
}

.hero-template-content {
    position: relative;
    z-index: 1;
}

/* ===== SECTION OFFRES ===== */
.offers-section {
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../IMG/consulting-service-card4.jpeg') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.offers-section > * {
    position: relative;
    z-index: 1;
}

/* ===== SECTION SERVICES À LA CARTE ===== */
.services-a-la-carte {
    position: relative;
    overflow: hidden;
}

.services-a-la-carte::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../IMG/consulting-service-card1.jpeg') center/cover;
    opacity: 0.04;
    z-index: 0;
}

.services-a-la-carte > * {
    position: relative;
    z-index: 1;
}

/* ===== SECTION FAQ (si vous en avez une) ===== */
.faq-section,
.faq-comptable-section {
    position: relative;
    overflow: hidden;
}

.faq-section::before,
.faq-comptable-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../IMG/consulting-service-card2.jpeg') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.faq-section > *,
.faq-comptable-section > * {
    position: relative;
    z-index: 1;
}

/* ===== OPTIMISATIONS ===== */

/* Améliorer les performances */
.hero-template::before,
.offers-section::before,
.services-a-la-carte::before,
.faq-section::before,
.faq-comptable-section::before {
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Responsive - Réduire l'opacité sur mobile pour meilleure lisibilité */
@media (max-width: 768px) {
    .hero-template::before {
        opacity: 0.08;
    }
    
    .offers-section::before,
    .services-a-la-carte::before,
    .faq-section::before,
    .faq-comptable-section::before {
        opacity: 0.02;
    }
}


