/* =================================
   CUSTOM STYLES POUR FIFI.FR
   ================================= */

/* 1. SERVICES - Égaliser les hauteurs des cartes */
.service-area .row {
    display: flex;
    flex-wrap: wrap;
}

.service-area .col-lg-4,
.service-area .col-md-6,
.service-area .col-sm-12 {
    display: flex;
    margin-bottom: 30px;
}

.service-card-v1 {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.service-card-v1 .service-para {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-link-wrapper {
    margin-top: auto;
    padding-top: 15px;
    text-align: center;
}

/* 2. SERVICES - Style des liens */
.service-link {
    color: var(--color-primary) !important;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(19, 155, 253, 0.1) 0%, rgba(19, 155, 253, 0.05) 100%);
    border: 1px solid rgba(19, 155, 253, 0.2);
}

.service-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0071ff 100%);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 155, 253, 0.3);
}

/* 3. PORTFOLIO - Images pleine largeur */
.latest-portfolio-card .img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
}

.latest-portfolio-card .img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.latest-portfolio-card:hover .img-box img {
    transform: scale(1.05);
}

/* 4. TÉMOIGNAGES - Égaliser les hauteurs */
.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-inner-style-two {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.testimonial-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-body .discription {
    flex-grow: 1;
    margin-bottom: 15px;
}

.testimonial-project,
.testimonial-date {
    margin-top: auto;
}

.testimonial-project {
    margin-bottom: 8px;
}

/* 5. CONTACT - Informations de contact */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}
.dis-mon-nom {
    font-size: 0.8em;
}

.contact-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d629d 0%, #139bfd 100%);
    border-radius: 50%;
    color: white;
    font-size: 18px;
}

.contact-content {
    flex: 1;
}

.contact-content h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content span,
.contact-content a {
    font-size: 16px;
    color: #6b7280;
    text-decoration: none;
}

.contact-content a:hover {
    color: #6366f1;
    text-decoration: underline;
}

/* 6. FOOTER - Margin top */
.footer-area.footer-style-one-wrapper {
    margin-top: 50px;
}

/* 7. AMÉLIORATIONS GÉNÉRALES */

/* Améliorer l'espacement des sections */
.tmp-section-gap,
.tmp-section-gapTop {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Style pour les boutons du thème */
.tmp-btn {
    transition: all 0.3s ease;
}

.tmp-btn:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-area .col-lg-4,
    .service-area .col-md-6 {
        margin-bottom: 20px;
    }
    
    .latest-portfolio-card .img-box {
        height: 200px;
    }
    
    .testimonial-inner-style-two {
        min-height: 250px;
    }
    
    .tmp-section-gap,
    .tmp-section-gapTop {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .latest-portfolio-card .img-box {
        height: 180px;
    }
    
    .testimonial-inner-style-two {
        min-height: 220px;
    }
} 
select#service-type {
    height: 62px;
    padding: 0px 18px;
}

/* Animation pour les notifications */
@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}