/* Styles pour la section services */
#services-section {
    position: relative;
    overflow: hidden;
}

/* Conteneur des services */
.services-container {
    display: grid;
    gap: 30px;
    position: relative;
}

/* Carte de service individuelle */
.wprt-icon-box {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.wprt-icon-box:hover {
    transform: translateY(-10px);
    border-color: #DC0014;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
}

/* Image/icône */
.icon-wrap {
    flex: 0 0 100px;
    margin-right: 25px;
    position: relative;
}

.icon-wrap img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(79, 70, 229, 0.2));
}

.wprt-icon-box:hover .icon-wrap img {
    transform: scale(1.1) rotate(-5deg);
}

/* Contenu texte */
.content-wrap {
    position: relative;
    z-index: 1;
}

.dd-title {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #DC0014, #AC0014);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dd-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #DC0014;
    transition: width 0.3s ease;
}

.wprt-icon-box:hover .dd-title::after {
    width: 70px;
}

.content-wrap p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

/* Effet de fond holographique */
.wprt-icon-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(79, 70, 229, 0.05), transparent);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wprt-icon-box:hover::before {
    opacity: 1;
}

/* Animation d'entrée */
@keyframes serviceEntry {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.col-md-4,
.col-md-offset-2 {
    animation: serviceEntry 0.6s ease forwards;
    opacity: 0;
}

/* Délais d'animation */
.col-md-4:nth-child(1) {
    animation-delay: 0.2s;
}

.col-md-4:nth-child(2) {
    animation-delay: 0.4s;
}

.col-md-4:nth-child(3) {
    animation-delay: 0.6s;
}

.col-md-offset-2 {
    animation-delay: 0.8s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .wprt-icon-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-wrap {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .dd-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .wprt-icon-box {
        padding: 25px;
    }

    .icon-wrap {
        flex-basis: 80px;
    }
}

/* ... */

.site-footer {
    padding: 2rem 1rem;
}

.footer-main {
    max-width: 1375px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 120px;
    height: auto;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.nav-column {
    flex: 1;
}

.nav-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin-bottom: 0.5rem;
}

.nav-list a {
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-contact {
    font-style: normal;
}

.contact-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.contact-info a {
    text-decoration: none;
}

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.copyright {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}
