 /* ----- TESTIMONIALS SECTION ----- */

 .testimonials-section {
     position: relative;
     background-image: linear-gradient(135deg, #050505, #111111);
     width: 100%;
     min-height: 50vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: 2rem;
     overflow: hidden;
 }

 .testimonials-header-text {
     text-align: center;
     margin-bottom: 3rem;
 }

 .testimonials-content-container {
     max-width: 1200px;
     position: relative;
     margin: 0 auto 4rem;
     overflow: hidden;
     z-index: 1;
 }

 /* Animated Background */
 .testimonials-tech-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     opacity: 0.20;
 }

 .testimonials-grid-line {
     position: absolute;
     background: linear-gradient(90deg, transparent, var(--accent), transparent);
     height: 1px;
     width: 100%;
     animation: testimonials-gridMove 15s linear infinite;
 }

 .testimonials-grid-line-vertical {
     position: absolute;
     background: linear-gradient(180deg, transparent, var(--accent), transparent);
     width: 1px;
     height: 100%;
     animation: testimonials-gridMoveVertical 15s linear infinite;
 }

 .testimonials-particle {
     position: absolute;
     width: 2px;
     height: 2px;
     background-color: var(--accent);
     border-radius: 50%;
     opacity: 0.6;
     animation: testimonials-particleFloat 10s linear infinite;
 }

 @keyframes testimonials-gridMove {
     0% {
         transform: translateY(-100px);
     }

     100% {
         transform: translateY(100vh);
     }
 }

 @keyframes testimonials-gridMoveVertical {
     0% {
         transform: translateX(-100px);
     }

     100% {
         transform: translateX(100vw);
     }
 }

 @keyframes testimonials-particleFloat {
     0% {
         transform: translate(0, 0);
         opacity: 0;
     }

     50% {
         opacity: 0.8;
     }

     100% {
         transform: translate(100px, -100px);
         opacity: 0;
     }
 }


 .testimonials-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 60px;
     height: 4px;
     background-color: var(--accent);
 }

 .testimonials-intro {
     font-size: 1.1rem;
     max-width: 800px;
     margin: 3rem auto;
     line-height: 1.8;
 }

 .testimonials-intro span {
     white-space: nowrap;
 }


 /* Commenté car nous n'avons plus besoin du carrousel
        .testimonials-carousel {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .testimonials-carousel-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        */

 .testimonials-card {
     /* Supprimé flex: 0 0 100%; car nous n'avons plus de carrousel */
     max-width: 900px;
     margin: 0 auto;
     background: rgba(29, 29, 29, 0.7);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 0.25rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
     padding: 2rem;
     position: relative;
     transition: all 0.3s ease;
     margin-top: 5px;
     margin-bottom: 5px;
 }

 .testimonials-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 10px rgba(204, 11, 13, 0.3);
 }

 .testimonials-card-top-border {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 3px;
     background: linear-gradient(90deg, transparent, var(--accent), transparent);
     border-radius: 0.25rem 0.25rem 0 0;
     z-index: 2;
     /* Ensure the border is above other elements */
 }

 .testimonials-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     right: 0;
     width: 30%;
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--accent));
 }

 .testimonials-quote-mark {
     color: var(--accent);
     opacity: 0.2;
     font-size: 120px;
     font-family: 'Georgia', serif;
     position: absolute;
     top: -30px;
     left: 20px;
     z-index: 0;
 }

 .testimonials-card-content {
     position: relative;
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
     z-index: 10;
 }

 .testimonials-card-image {
     flex-shrink: 0;
 }


 .testimonials-client-image {
     position: relative;
     width: 5rem;
     height: 5rem;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background-image: linear-gradient(to bottom right, #374151, #111827);
     border: 2px solid var(--accent);
     box-shadow: 0 0 15px rgba(204, 11, 13, 0.5);
     overflow: hidden;
 }

 .testimonials-client-image::after {
     content: '';
     position: absolute;
     top: -5px;
     left: -5px;
     right: -5px;
     bottom: -5px;
     border-radius: 50%;
     border: 1px solid var(--accent);
     opacity: 0.5;
     animation: testimonials-pulse 2s infinite;
 }

 .testimonials-client-image img {
     width: 100%;
     height: 100%;
 }

 @keyframes testimonials-pulse {
     0% {
         transform: scale(1);
         opacity: 0.5;
     }

     50% {
         transform: scale(1.1);
         opacity: 0.2;
     }

     100% {
         transform: scale(1);
         opacity: 0.5;
     }
 }

 .testimonials-text {
     flex: 1 1 0%;
     padding: 0;
 }

 .testimonials-text p {
     font-size: 1.125rem;
     font-style: italic;
     margin-bottom: 1.5rem;
     line-height: 1.625;
     margin: 0;
 }

 .testimonials-signature {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 1.5rem;
 }

 .testimonials-signature p {
     font-size: 0.875rem;
     line-height: 1.25rem;
     opacity: 0.7;
 }



 /* Commenté car nous n'avons plus besoin des éléments de navigation du carrousel
        .testimonials-pagination-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(241, 241, 241, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .testimonials-pagination-dot.active {
            width: 24px;
            border-radius: 0.25rem;
            background-color: var(--accent);
            box-shadow: 0 0 10px var(--accent);
        }
        
        .testimonials-carousel-button {
            background: rgba(29, 29, 29, 0.7);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonials-carousel-button:hover {
            background: rgba(204, 11, 13, 0.7);
            transform: scale(1.1);
        }
        */

 .testimonials-section .social-icons {
     display: flex;
     gap: 0.33rem;
     margin-top: 1.5rem;
 }

 .testimonials-section .social-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: rgba(204, 11, 13, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: transform 0.3s ease, background-color 0.3s ease;
 }

 .testimonials-section .social-icon:hover {
     transform: translateY(-5px);
     background-color: rgba(204, 11, 13, 0.2);
 }

 .testimonials-section .social-icon svg {
     width: 20px;
     height: 20px;
     fill: #CC0B0D;
 }

 /* --- CTA Button --- */

 .cta-container {
     text-align: center;
     margin-top: 4rem;
 }

 .cta-container p {
     margin: 5rem auto;
     opacity: 0.7;
 }

 /* BOTTOM CTA */

 .btn {
     font-family: var(--title-font);
     font-weight: 600;
     padding: 1rem 2rem;
     border-radius: 0.25rem;
     text-decoration: none;
     font-size: 1rem;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
 }

 .btn-primary {
     background-color: #CC0B0D;
     color: #F0F0F0;
     border: none;
     position: relative;
     z-index: 1;
 }

 .btn-primary::before {
     content: '';
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     background: linear-gradient(45deg, #CC0B0D, transparent, #CC0B0D);
     z-index: -1;
     border-radius: 0.25rem;
     background-size: 400%;
     animation: glowingBorder 8s linear infinite;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .btn-primary:hover::before {
     opacity: 1;
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(204, 11, 13, 0.3);
 }

 .btn svg {
     width: 18px;
     height: 18px;
     margin-bottom: 2px;
 }

 @keyframes glowingBorder {
     0% {
         background-position: 0 0;
     }

     50% {
         background-position: 400% 0;
     }

     100% {
         background-position: 0 0;
     }
 }

 @media (min-width: 640px) {
     .testimonials-card {
         padding: 1.5rem;
     }

     .testimonials-quote-mark {
         font-size: 80px;
         top: -15px;
         left: 10px;
     }
 }

 @media (min-width: 768px) {
     .testimonials-cards-container {
         grid-template-columns: repeat(4, minmax(0, 1fr));
     }

     .testimonials-card-content {
         flex-direction: row;
         gap: 2.5rem;
     }

     .testimonials-client-image {
         width: 6rem;
         height: 6rem;
     }

     .testimonials-text p {
         font-size: 1.25rem;
     }
 }

 @media (min-width: 1024px) {
     .testimonials-header {
         text-align: left;
     }

     .testimonials-header-text {
         text-align: left;
     }

     .testimonials-title::after {
         left: 0;
         transform: translateX(0);
     }

     .testimonials-intro {
         margin: 3rem 0;
         text-align: left;
         max-width: none;
     }

     .testimonials-intro p {
         white-space: wrap;
     }
 }