/* Styles pour les pages comptabilité et DAF */

/* Services Comptables */
.service-card-compta {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

.service-card-compta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon-compta {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.service-card-compta h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.service-card-compta ul {
    list-style: none;
    padding: 0;
}

.service-card-compta li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.service-card-compta li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Processus Comptabilité */
.process-step-compta {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s;
}

.process-step-compta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number-compta {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Technologies */
.tech-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 20px;
}

.tech-item h5 {
    margin: 10px 0 5px;
    color: white;
}

.advantages-list {
    margin-top: 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.advantage-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
    color: var(--secondary-color);
}

.advantage-item h5 {
    margin-bottom: 5px;
    color: white;
}

/* Tarifs Comptabilité */
.pricing-card-compta {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.pricing-card-compta.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-header-compta {
    background: var(--primary-color);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.pricing-header-compta h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.price {
    font-size: 1.2rem;
}

.price .amount {
    font-weight: 700;
    font-size: 1.5rem;
}

.pricing-body-compta {
    padding: 30px 20px;
}

.pricing-body-compta ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-body-compta li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.pricing-body-compta li i {
    margin-right: 10px;
    width: 20px;
}

.pricing-body-compta li .fa-check {
    color: var(--primary-color);
}

.pricing-body-compta li .fa-times {
    color: #ccc;
}

/* Missions DAF */
.mission-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s;
    border-top: 4px solid var(--primary-color);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mission-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.mission-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.mission-card li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Avantages DAF */
.advantage-daf {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.advantage-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.advantage-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.advantage-header h4 {
    margin: 0;
    color: var(--dark-color);
}

/* Profils DAF */
.profile-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.profile-card.featured {
    transform: scale(1.05);
    background: rgba(255,255,255,0.15);
    border: 2px solid var(--secondary-color);
}

.profile-header {
    padding: 25px 20px;
    text-align: center;
    background: rgba(0,0,0,0.2);
}

.profile-header h4 {
    margin-bottom: 10px;
    color: white;
}

.profile-header .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.profile-body {
    padding: 25px 20px;
}

.profile-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.profile-body li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    padding-left: 25px;
}

.profile-body li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.profile-meta {
    text-align: center;
}

/* Processus DAF */
.process-daf {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* Témoignages DAF */
.testimonial-daf {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    height: 100%;
    position: relative;
}

.testimonial-daf:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: right;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Navigation dropdown pour expertises */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s;
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(46, 139, 87, 0.1);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .service-card-compta,
    .mission-card,
    .advantage-daf {
        margin-bottom: 20px;
    }
    
    .pricing-card-compta.featured {
        transform: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .process-step:not(:last-child):after {
        left: 50%;
        top: 60px;
        bottom: -40px;
        transform: translateX(-50%);
    }
    
    .advantage-header {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-header i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}