/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #4CAF50;
    --light-green: #8BC34A;
    --lighter-green: #A5D6A7;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --header-height: 80px;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--white);
    color: var(--text-dark);
}

/* Domaines d'Intervention Styles */
.featured-services {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(76,175,80,0.03) 0%, rgba(139,195,74,0.08) 100%);
    position: relative;
    overflow: hidden;
}

.featured-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(76,175,80,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139,195,74,0.05) 0%, transparent 50%);
    opacity: 1;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.featured-services .section-title {
    margin-bottom: 60px;
}

.featured-services .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.featured-services .section-title h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
}

.featured-services .section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.featured-services .icon-box {
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    border: 1px solid rgba(76,175,80,0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.featured-services .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
    transform: translateZ(-1px);
}

.featured-services .icon-box:hover {
    transform: translateY(-20px) scale(1.02) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: transparent;
}

.featured-services .icon-box:hover::before {
    opacity: 0.03;
}

.featured-services .icon {
    margin-bottom: 30px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(76,175,80,0.2);
    transform-style: preserve-3d;
}

.featured-services .icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    opacity: 0;
    transition: all 0.6s ease;
    transform: translateZ(-1px);
}

.featured-services .icon-box:hover .icon {
    transform: scale(1.1) rotate(5deg) translateZ(20px);
    box-shadow: 0 15px 30px rgba(76,175,80,0.3);
}

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

.featured-services .icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: all 0.6s ease;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.featured-services .icon-box:hover .icon img {
    transform: scale(1.1) rotate(-5deg) translateZ(30px);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1.1) rotate(-5deg) translateZ(30px);
    }
    50% {
        transform: scale(1.2) rotate(-5deg) translateZ(30px);
    }
    100% {
        transform: scale(1.1) rotate(-5deg) translateZ(30px);
    }
}

.featured-services .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    transition: all 0.6s ease;
    transform-style: preserve-3d;
}

.featured-services .title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--light-green);
    bottom: 0;
    left: 0;
    transition: all 0.6s ease;
    border-radius: 3px;
    transform: translateZ(-1px);
}

.featured-services .title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.6s ease;
    display: inline-block;
    transform-style: preserve-3d;
}

.featured-services .icon-box:hover .title a {
    color: var(--primary-green);
    transform: translateX(5px) translateZ(20px);
    text-shadow: 0 5px 15px rgba(76,175,80,0.2);
}

.featured-services .icon-box:hover .title::after {
    width: 120px;
    background: var(--primary-green);
    transform: translateZ(-1px);
    box-shadow: 0 5px 15px rgba(76,175,80,0.2);
}

.featured-services .description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    flex-grow: 1;
    transition: all 0.6s ease;
    font-size: 16px;
    transform-style: preserve-3d;
}

.featured-services .icon-box:hover .description {
    color: var(--text-dark);
    transform: translateZ(10px);
}

/* Animation pour les domaines */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

.featured-services .icon-box {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.featured-services .icon-box:nth-child(2) {
    animation-delay: 0.3s;
}

.featured-services .icon-box:nth-child(3) {
    animation-delay: 0.6s;
}

/* Effet de brillance amélioré */
.featured-services .icon-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.featured-services .icon-box:hover::after {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Effet de particules */
.featured-services .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(76,175,80,0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(139,195,74,0.1) 0%, transparent 20%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
}

.featured-services .icon-box:hover::before {
    opacity: 1;
    animation: particleMove 3s ease infinite;
}

@keyframes particleMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .featured-services {
        padding: 80px 0;
    }
    
    .featured-services .section-title h2 {
        font-size: 32px;
    }
    
    .featured-services .section-title h3 {
        font-size: 24px;
    }
    
    .featured-services .icon-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .featured-services {
        padding: 60px 0;
    }
    
    .featured-services .icon-box {
        padding: 40px 25px;
    }
    
    .featured-services .title {
        font-size: 22px;
    }
    
    .featured-services .icon {
        width: 80px;
        height: 80px;
    }
    
    .featured-services .icon img {
        width: 40px;
        height: 40px;
    }
    
    .featured-services .section-title h2 {
        font-size: 28px;
    }
    
    .featured-services .section-title h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .featured-services .section-title h2 {
        font-size: 24px;
    }
    
    .featured-services .section-title h3 {
        font-size: 20px;
    }
    
    .featured-services .icon-box {
        padding: 30px 20px;
    }
    
    .featured-services .title {
        font-size: 20px;
    }
}

/* Global Styles */
body {
    background-color: var(--white);
    color: var(--text-dark);
}

.bg-light-green {
    background-color: var(--light-green) !important;
}

.text-primary {
    color: var(--primary-green) !important;
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--light-green);
    border-color: var(--light-green);
}

/* Topbar Styles */
.topbar {
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    z-index: 1000;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 20px;
    font-weight: 500;
}

.topbar a:hover {
    color: var(--white);
    opacity: 0.9;
    transform: translateY(-2px);
}

.topbar i {
    margin-right: 8px;
    font-size: 16px;
}

.topbar .social-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.topbar .social-icon:hover {
    background: var(--white);
    color: var(--primary-green) !important;
    transform: translateY(-3px);
}

.topbar .opening-hours {
    font-size: 13px;
    line-height: 1.4;
}

.topbar .opening-hours p {
    margin: 0;
    opacity: 0.9;
}

/* Navbar Styles */
.navbar {
    height: var(--header-height);
    padding: 0;
    background: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    padding: 0;
    margin-right: 30px;
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 24px;
    color: var(--primary-green);
    font-weight: 600;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 30px 15px !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
    padding: 20px 15px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 10px;
    margin-top: 0;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-green);
    transform: translateX(5px);
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        margin-top: 10px;
    }

    .nav-link {
        padding: 10px 15px !important;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .topbar {
        text-align: center;
    }

    .topbar .col-md-4 {
        margin-bottom: 10px;
    }

    .topbar .social-icons {
        justify-content: center;
        margin: 10px 0;
    }
}

/* Section Backgrounds */
.bg-light {
    background-color: var(--light-gray) !important;
}

/* Footer Styles */
footer {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Section Backgrounds */
.bg-light {
    background-color: var(--light-gray) !important;
}

/* Counts Section - Design Complet */
.counts {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(76,175,80,0.02) 0%, rgba(139,195,74,0.05) 100%);
    position: relative;
    overflow: hidden;
}

.counts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(76,175,80,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139,195,74,0.05) 0%, transparent 50%);
    opacity: 1;
    animation: gradientMove 15s ease infinite;
}

.counts .count-box {
    padding: 50px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.counts .count-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    opacity: 0;
    transition: all 0.8s ease;
    z-index: -1;
}

.counts .count-box:hover {
    transform: translateY(-20px) rotateX(10deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.counts .count-box:hover::before {
    opacity: 0.05;
}

.counts .count-box i {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease;
    box-shadow: 0 15px 30px rgba(76,175,80,0.3);
}

.counts .count-box:hover i {
    transform: translateX(-50%) rotateY(360deg) scale(1.1);
    box-shadow: 0 20px 40px rgba(76,175,80,0.4);
}

.counts .count-box span {
    font-size: 48px;
    display: block;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 25px 0 15px;
    transition: all 0.8s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.counts .count-box.animated span {
    opacity: 1;
    transform: translateY(0);
}

.counts .count-box span::after {
    content: '+';
    font-size: 28px;
    position: absolute;
    top: 0;
    right: -20px;
    color: var(--light-green);
    opacity: 0;
    transition: all 0.8s ease;
}

.counts .count-box:hover span::after {
    opacity: 1;
    transform: translateX(5px);
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.8s ease;
    opacity: 0;
    transform: translateY(20px);
}

.counts .count-box.animated p {
    opacity: 1;
    transform: translateY(0);
}

.counts .count-box:hover p {
    color: var(--text-dark);
    transform: translateY(-5px);
}

/* Animation pour les compteurs */
@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.counts .count-box {
    animation: countUp 1s ease forwards;
    opacity: 0;
}

.counts .count-box:nth-child(2) {
    animation-delay: 0.3s;
}

.counts .count-box:nth-child(3) {
    animation-delay: 0.6s;
}

.counts .count-box:nth-child(4) {
    animation-delay: 0.9s;
}

/* Effet de particules */
.counts .count-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(76,175,80,0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(139,195,74,0.1) 0%, transparent 20%);
    opacity: 0;
    transition: all 0.8s ease;
    z-index: -1;
}

.counts .count-box:hover::after {
    opacity: 1;
    animation: particleMove 3s ease infinite;
}

/* Effet de brillance */
.counts .count-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.counts .count-box:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .counts {
        padding: 80px 0;
    }
    
    .counts .count-box {
        margin-bottom: 30px;
        padding: 40px 25px;
    }
    
    .counts .count-box span {
        font-size: 42px;
    }
    
    .counts .count-box p {
        font-size: 18px;
    }
    
    .counts .count-box i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .counts {
        padding: 60px 0;
    }
    
    .counts .count-box {
        padding: 35px 20px;
    }
    
    .counts .count-box span {
        font-size: 36px;
    }
    
    .counts .count-box p {
        font-size: 16px;
    }
    
    .counts .count-box i {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 24px;
    }
}

/* Clients Section */
.clients {
    padding: 60px 0;
    background: var(--white);
}

.clients .carousel-item {
    padding: 15px;
    transition: all 0.4s ease;
}

.clients .carousel-item img {
    max-width: 100%;
    height: auto;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.clients .carousel-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.clients .carousel-control-prev,
.clients .carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
}

.clients:hover .carousel-control-prev,
.clients:hover .carousel-control-next {
    opacity: 1;
}

.clients .carousel-control-prev {
    left: -20px;
}

.clients .carousel-control-next {
    right: -20px;
}

.clients .carousel-control-prev:hover,
.clients .carousel-control-next:hover {
    background: var(--light-green);
}

.clients .carousel-control-prev-icon,
.clients .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Animation for carousel items */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.clients .carousel-item {
    animation: fadeInScale 0.5s ease forwards;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    margin-top: -300px;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.portfolio .section-title {
    text-align: center;
    padding-bottom: 40px;
}

.portfolio .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #09b322;
}

.portfolio .section-title h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #09b322;
}

.portfolio .section-title h3 span {
    color: #09b322;
}

.portfolio .section-title p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 0;
}

.portfolio-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.portfolio-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.portfolio-wrap:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.portfolio-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-wrap:hover img {
    transform: scale(1.1);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.portfolio-info p {
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.portfolio-links {
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-links a {
    width: 36px;
    height: 36px;
    background: #1977cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.portfolio-links a:hover {
    background: #166ab5;
    transform: scale(1.1);
}

.portfolio .btn-primary {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    background: #1977cc;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(25,119,204,0.3);
}

.portfolio .btn-primary:hover {
    background: #166ab5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25,119,204,0.4);
}

.portfolio .btn-primary i {
    transition: transform 0.3s ease;
}

.portfolio .btn-primary:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-wrap img {
        height: 250px;
    }
    
    .portfolio-info h4 {
        font-size: 16px;
    }
    
    .portfolio-info p {
        font-size: 12px;
    }
    
    .portfolio .btn-primary {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Team Section */
.team {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(76,175,80,0.02) 0%, rgba(139,195,74,0.05) 100%);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(76,175,80,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139,195,74,0.03) 0%, transparent 50%);
    opacity: 1;
    animation: gradientMove 15s ease infinite;
}

.team .section-title {
    text-align: center;
    padding-bottom: 40px;
}

.team .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c4964;
}

.team .section-title h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c4964;
}

.team .section-title h3 span {
    color: #09b322;
}

.team .member {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.team .member:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team .member-img {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team .member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.team .member:hover .member-img img {
    transform: scale(1.1);
}

.team .member .social {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(9,179,34,0.9), rgba(9,179,34,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(100%);
}

.team .member:hover .social {
    opacity: 1;
    transform: translateY(0);
}

.team .member .social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    backdrop-filter: blur(5px);
}

.team .member:hover .social a {
    transform: translateY(0);
    opacity: 1;
}

.team .member .social a:hover {
    background: #fff;
    color: #09b322;
    transform: translateY(-5px);
}

.team .member-info {
    padding: 30px;
    text-align: center;
    background: #fff;
    position: relative;
}

.team .member-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2c4964;
    margin-bottom: 5px;
    transition: all 0.4s ease;
}

.team .member-info span {
    font-size: 16px;
    color: #6c757d;
    display: block;
    transition: all 0.4s ease;
}

.team .member:hover .member-info h4 {
    color: #09b322;
}

.team .member:hover .member-info span {
    color: #2c4964;
}

.team .carousel-control-prev,
.team .carousel-control-next {
    width: 50px;
    height: 50px;
    background: #09b322;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
}

.team:hover .carousel-control-prev,
.team:hover .carousel-control-next {
    opacity: 1;
}

.team .carousel-control-prev {
    left: -25px;
}

.team .carousel-control-next {
    right: -25px;
}

.team .carousel-control-prev:hover,
.team .carousel-control-next:hover {
    background: #07a01d;
    transform: translateY(-50%) scale(1.1);
}

.team .carousel-control-prev-icon,
.team .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Animation pour les membres */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team .member {
    animation: fadeInUp 0.6s ease forwards;
}

.team .member:nth-child(2) {
    animation-delay: 0.2s;
}

.team .member:nth-child(3) {
    animation-delay: 0.4s;
}

.team .member:nth-child(4) {
    animation-delay: 0.6s;
}

/* Effet de brillance */
.team .member::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.team .member:hover::after {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .team {
        padding: 80px 0;
    }
    
    .team .member-img {
        height: 300px;
    }
    
    .team .member-info h4 {
        font-size: 20px;
    }
    
    .team .member-info span {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 60px 0;
    }
    
    .team .member-img {
        height: 250px;
    }
    
    .team .member-info {
        padding: 20px;
    }
    
    .team .member-info h4 {
        font-size: 18px;
    }
    
    .team .member-info span {
        font-size: 13px;
    }
    
    .team .carousel-control-prev,
    .team .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .team .carousel-control-prev {
        left: -20px;
    }
    
    .team .carousel-control-next {
        right: -20px;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(9,179,34,0.02) 0%, rgba(9,179,34,0.05) 100%);
    position: relative;
    overflow: hidden;
    margin-top: -100px;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(9,179,34,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(9,179,34,0.03) 0%, transparent 50%);
    opacity: 1;
    animation: gradientMove 15s ease infinite;
}

.contact .section-title {
    margin-bottom: 60px;
}

.contact .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #09b322, #07a01d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.contact .section-title h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2c4964;
}

.contact .section-title h3 span {
    color: #09b322;
}

.contact .info-box {
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    border: 1px solid rgba(9,179,34,0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.contact .info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #09b322, #07a01d);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
    transform: translateZ(-1px);
}

.contact .info-box:hover {
    transform: translateY(-20px) scale(1.02) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: transparent;
}

.contact .info-box:hover::before {
    opacity: 0.03;
}

.contact .info-box i {
    font-size: 48px;
    background: linear-gradient(135deg, #09b322, #07a01d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    transition: all 0.6s ease;
    position: relative;
    display: inline-block;
}

.contact .info-box:hover i {
    transform: scale(1.1) rotate(5deg);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1.1) rotate(5deg);
    }
    50% {
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        transform: scale(1.1) rotate(5deg);
    }
}

.contact .info-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    transition: all 0.6s ease;
}

.contact .info-box h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #09b322;
    bottom: 0;
    left: 0;
    transition: all 0.6s ease;
    border-radius: 3px;
}

.contact .info-box:hover h3::after {
    width: 120px;
    background: #07a01d;
}

.contact .info-box p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0;
    transition: all 0.6s ease;
    font-size: 16px;
}

.contact .info-box:hover p {
    color: #2c4964;
}

.contact .info-box a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.6s ease;
    position: relative;
}

.contact .info-box a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #09b322;
    transition: all 0.6s ease;
}

.contact .info-box a:hover {
    color: #09b322;
}

.contact .info-box a:hover::after {
    width: 100%;
}

.contact .php-email-form {
    padding: 50px 35px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(9,179,34,0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact .php-email-form form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact .php-email-form .form-group {
    margin-bottom: 25px;
    flex: 1;
}

.contact .php-email-form textarea {
    height: 200px;
    resize: none;
}

.contact .php-email-form .text-center {
    margin-top: auto;
}

.contact .php-email-form button {
    background: linear-gradient(135deg, #09b322, #07a01d);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.6s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact .php-email-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: all 0.6s ease;
    z-index: -1;
}

.contact .php-email-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(9,179,34,0.3);
}

.contact .php-email-form button:hover::before {
    width: 100%;
}

.contact iframe {
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.6s ease;
    border: 1px solid rgba(9,179,34,0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 100%;
    min-height: 500px;
}

.contact .php-email-form:hover {
    transform: translateY(-20px) scale(1.02) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: transparent;
}

/* Animation pour les éléments de contact */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

.contact .info-box,
.contact .php-email-form {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.contact .info-box:nth-child(2) {
    animation-delay: 0.3s;
}

.contact .info-box:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact .row.mt-5 {
        flex-direction: column;
    }
    
    .contact iframe {
        min-height: 400px;
        margin-bottom: 30px;
    }
    
    .contact .php-email-form {
        height: auto;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact iframe {
        min-height: 300px;
    }
}

/* Section Title Styles */
.section-title {
    text-align: center;
    padding: 30px 0;
    position: relative;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0;
}

.section-title h3 span {
    color: var(--primary-green);
    font-weight: 600;
}

.section-title p {
    margin: 15px auto 0 auto;
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
}

/* Animation for section titles */
.section-title[data-aos] {
    animation: fadeInUp 0.5s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title h3 {
        font-size: 20px;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark);
}

.hero-carousel {
    height: 100%;
}

.hero-carousel .carousel-inner {
    height: 100%;
}

.hero-carousel .carousel-item {
    height: 100%;
    position: relative;
    transition: transform 1.2s ease-in-out;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 1.2s ease-in-out;
}

.hero-carousel .carousel-item.active .hero-image {
    transform: scale(1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-carousel .carousel-item.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-green);
    border: 2px solid var(--primary-green);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-content .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-content .btn-primary:hover::before {
    width: 100%;
}

.hero-content .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-content .btn-primary i {
    transition: transform 0.4s ease;
}

.hero-content .btn-primary:hover i {
    transform: translateX(5px);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev {
    left: 30px;
}

.hero-carousel .carousel-control-next {
    right: 30px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel .carousel-indicators {
    bottom: 30px;
    gap: 10px;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    margin: 0;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.hero-carousel .carousel-indicators button.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
    border-color: var(--white);
}

/* Animation pour le texte */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    animation: slideInUp 0.8s ease forwards;
}

.hero-content .btn-primary {
    animation: slideInUp 0.8s ease 0.2s forwards;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .hero-carousel .carousel-control-prev {
        left: 15px;
    }
    
    .hero-carousel .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-carousel .carousel-indicators {
        bottom: 20px;
    }
    
    .hero-carousel .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
}

/* Mot du DG Section - Améliorations supplémentaires */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(76,175,80,0.02) 0%, rgba(139,195,74,0.05) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(76,175,80,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139,195,74,0.03) 0%, transparent 50%);
    opacity: 1;
    animation: gradientMove 15s ease infinite;
}

.about .dg-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about .dg-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(76,175,80,0.2) 0%,
        rgba(139,195,74,0.4) 100%
    );
    opacity: 0;
    transition: all 0.6s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transform: translateY(100%);
}

.about .dg-image-wrapper:hover .dg-image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.about .dg-image-info {
    color: var(--white);
    text-align: left;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.about .dg-image-wrapper:hover .dg-image-info {
    transform: translateY(0);
}

.about .dg-image-info h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about .dg-image-info p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.about .dg-content {
    position: relative;
    z-index: 1;
}

.about .dg-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: -1;
    transition: all 0.6s ease;
}

.about .dg-content:hover::after {
    transform: translate(30%, -30%) scale(1.2);
    opacity: 0.15;
}

.about .dg-content p {
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.about .dg-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-green), var(--light-green));
    border-radius: 2px;
    opacity: 0;
    transition: all 0.4s ease;
}

.about .dg-content:hover p::before {
    opacity: 1;
    animation: lineGrow 0.6s ease forwards;
}

@keyframes lineGrow {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

.about .dg-signature {
    position: relative;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(76,175,80,0.2);
}

.about .dg-signature p {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    color: var(--primary-green);
    margin: 0;
    padding: 0;
    text-align: right;
    line-height: 1.4;
}

.about .dg-signature p::before {
    display: none;
}

.about .dg-signature::before {
    content: '';
    position: absolute;
    top: -1px;
    right: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-green), transparent);
}

/* Animation de particules en arrière-plan */
.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(76,175,80,0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(139,195,74,0.05) 0%, transparent 20%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
}

.about:hover::after {
    opacity: 1;
    animation: particleFloat 3s ease infinite;
}

@keyframes particleFloat {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Effet de brillance sur l'image */
.about .dg-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.about .dg-image:hover::after {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about .dg-image-info h4 {
        font-size: 20px;
    }
    
    .about .dg-image-info p {
        font-size: 14px;
    }
    
    .about .dg-signature p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .about .dg-image-overlay {
        padding: 20px;
    }
    
    .about .dg-content::after {
        width: 70px;
        height: 70px;
    }
}