       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            overflow-x: hidden;
        }

.nav-link:hover, .nav-link:focus{
    color: #99c21c !important;
}

/* Hero Section */
/* Styles pour les slides */
.hero-content {
    position: relative;
    min-height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Animation de transition */
.hero-background {
    transition: background-image 0.5s ease;
}

.hero-title, .hero-subtitle {
    transition: opacity 0.5s ease;
}
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    margin-left: 10%;
    color: white;
    animation: fadeInUp 1s ease-out;
}

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

.hero-subtitle {
   font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.hero-btn {
 display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #99c21c 0%, #99c21c 100%);
    color: #ffff;
    font-weight: 600;
    width: 14em;
    font-size: 1.1rem;
    text-decoration: none;
    /* border-radius: 50px; */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffa500 0%, #99c21c 100%);
}

.hero-btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-btn:hover .hero-btn-icon {
    transform: translateX(5px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 4;
    display: flex;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn svg {
    width: 25px;
    height: 25px;
}

.carousel-btn:hover {
    background: #99c21c;
    border-color: #99c21c;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        margin-left: 5%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .carousel-nav {
        bottom: 20px;
        right: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        text-align: center;
        margin-left: 0;
        padding: 0 15px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .carousel-nav {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }
}

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

/* For RTL languages like Arabic */
[dir="rtl"] .hero-content {
    margin-left: 0;
    margin-right: 10%;
}

[dir="rtl"] .carousel-nav {
    right: auto;
    left: 40px;
}

[dir="rtl"] .hero-btn svg {
    transform: rotate(180deg);
}

[dir="rtl"] .hero-btn:hover .hero-btn-icon {
    transform: translateX(-5px);
}

@media (max-width: 992px) {
    [dir="rtl"] .hero-content {
        margin-right: 5%;
    }
}

@media (max-width: 576px) {
    [dir="rtl"] .hero-content {
        margin-right: 0;
    }
}












        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&h=1080&fit=crop') center/cover no-repeat;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.7) 0%, rgba(30, 41, 59, 0.5) 100%);
            z-index: 2;
        }



        /* Contact Buttons */
        .contact-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.25rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: white;
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }

        .contact-btn:hover {
            background: #99c21c;
            transform: translateY(-2px);
            color: #fff;
                text-decoration: none;
        }

        .contact-btn svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
        }

        .cta-btn {
            padding: 0.875rem 1.75rem;
            background: white;
            color: #1e293b;
            border: none;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-btn:hover {
            background: #99c21c;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
        }

        .cta-btn svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
        }


        .lang-flag {
            width: 32px;
            height: 24px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .lang-flag:hover {
            transform: scale(1.1);
            border-color: #99c21c;
        }

        .lang-flag.active {
            border-color: white;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        /* Styles existants pour la navbar... */

/* ===== RESPONSIVE TABLETTE (768px - 1024px) ===== */
@media screen and (max-width: 1024px) and (min-width: 768px) {


    .contact-buttons {
        flex-direction: column;
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
        margin: 5px 0;
    }



    .cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
    }

    /* Overlay quand menu est ouvert */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }

    .menu-overlay.active {
        display: block;
    }



}
span.phone-number{
    font-size: 19px;
    font-weight: 700;
}


        /* Hero Content */
        .hero-content {
             position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 29px 7rem; */
    /* margin: 0 auto; */

        }

        .hero-title {
            font-size: 5rem;
            font-weight: 700;
            color: white;
            line-height: 1.1;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out;
        }

        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            bottom: 4rem;
            left: 3rem;
            display: flex;
            gap: 1rem;
            z-index: 4;
        }

        .carousel-btn {
            width: 60px;
            height: 60px;
            background: rgba(249, 115, 22, 0.9);
            border: none;
            border-radius: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .carousel-btn:hover {
            background: #99c21c;
            transform: scale(1.1);
        }

        .carousel-btn svg {
            width: 24px;
            height: 24px;
            stroke: white;
            stroke-width: 2;
        }

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

        /* Responsive Design */
        @media (max-width: 1024px) {
            .navbar {
                padding: 1rem 2rem;
            }

            .hero-title {
                font-size: 3.5rem;
            }


        }

        @media (max-width: 768px) {


            .contact-buttons {
                flex-direction: column;
                width: 100%;
            }

            .contact-btn,
            .cta-btn {
                width: 100%;
                justify-content: center;
            }



            .hero-content {
                padding: 0 2rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .carousel-nav {
                left: 2rem;
                bottom: 2rem;
            }

            .carousel-btn {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 1rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-content {
                padding: 0 1rem;
            }

            .carousel-nav {
                left: 1rem;
                bottom: 1rem;
            }
        }
 .back-to-top {
     position: fixed;
     display: none;
     right: 30px;
     bottom: 30px;
     z-index: 99;
 }

 /* SWIPER */
 .swiper-slide img {
     width: 100%;
     transition: transform 0.5s ease;
     min-height: 350px;
     obhect-fit: cover;
 }



 .swiper-container {
     overflow: hidden;
 }


 .list-style-one {
     position: relative;
 }

 .list-style-one li {
     position: relative;
     font-size: 16px;
     line-height: 26px;
     color: #222222;
     font-weight: 400;
     padding-left: 35px;
     margin-bottom: 12px;
 }

 .list-style-one li:before {
     content: "\f058";
     position: absolute;
     left: 0;
     top: 0px;
     display: block;
     font-size: 18px;
     padding: 0px;
     color: #99c21c;
     font-weight: 600;
     -moz-font-smoothing: grayscale;
     -webkit-font-smoothing: antialiased;
     font-style: normal;
     font-variant: normal;
     text-rendering: auto;
     line-height: 1.6;
     font-family: "Font Awesome 5 Free";
 }

 .list-style-one li a:hover {
     color: #99c21c;
 }

 .btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #657078;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    border-radius: 30px;
    letter-spacing: 0.02em;
    border: 1px solid #E1E4E6;
    /* background-color: #D4B242; */
}


/* .display{
    width:12.500em;
    height:12.500em;
	margin:10% 38%;
	border-radius:50%;
    position:relative;
    background:#FF6600;
    overflow:hidden;
	font-size:2em;
    font-weight:bold;
    text-align:center;
	box-shadow:30px 30px 30px 10px rgba(0,0,0,0.7);
	-webkit-box-shadow:30px 30px 30px 10px rgba(0,0,0,0.7);
	-moz-box-shadow:30px 30px 30px 10px rgba(0,0,0,0.7);
  } */
.arrow-btn {
    position: relative;
    padding-right: 45px;
}

.arrow-btn::after {
    content: "→";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #99c21c;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.arrow-btn:hover::after {
    transform: translate(5px, -50%);
}


 .btn-style-one:hover {
     background-color: #99c21c;
     color: #ffffff;
 }

.about-section {
    position: relative;
    padding: 120px 0 70px;
}

.about-section .sec-title {
    margin-bottom: 45px;
}

.about-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .content-column .inner-column {
    position: relative;
    padding-left: 30px;
}

.about-section .text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
}

.about-section .list-style-one {
    margin-bottom: 45px;
}

.about-section .btn-box {
    position: relative;
}

.about-section .btn-box a {
    padding: 15px 50px;
}

/* ===== STYLES POUR LES IMAGES ===== */
.about-section .image-column {
    position: relative;
}

.about-section .image-column .inner-column {
    position: relative;
    padding-left: 80px;
    padding-bottom: 0px;
    min-height: 500px; /* Hauteur minimale pour contenir les images */
}

/* Image 1 (fond) */
.about-section .image-column .image-1 {
    position: relative;
    width: 80%;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image 2 (au-dessus) */
.about-section .image-column .image-2 {
    position: absolute;
    top: 80px;
    right: 0;
    width: 60%;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid #99c21c;
}

.about-section .image-column img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-section .image-column img:hover {
    transform: scale(1.05);
}

/* ===== RESPONSIVE - TABLETTE ===== */
@media (max-width: 991px) {
    .about-section {
        padding: 80px 0 50px;
    }

    .about-row {
        display: flex;
        flex-direction: column;
    }

    .content-column {
        width: 100%;
        margin-bottom: 50px;
    }

    .content-column .inner-column {
        padding-left: 0;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }

    .about-section .sec-title h2 {
        text-align: center;
    }

    .about-section .text {
        text-align: left;
    }

    .about-section .image-column .inner-column {
        padding-left: 0;
        min-height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-section .image-column .image-1 {
        width: 75%;
    }

    .about-section .image-column .image-2 {
        width: 55%;
        top: 60px;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 767px) {
    .about-section {
        padding: 60px 0 40px;
    }

    .about-section .image-column .inner-column {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-section .image-column .image-1,
    .about-section .image-column .image-2 {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        border: none;
    }

    .about-section .image-column .image-2 {
        border: 3px solid #99c21c;
    }
}



.title-h1{
        font-size: 3rem;
    }

/* SWIPER SECTION */
.swiper-section {
    background:  url("../img/swiperbg.jpg") no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-text {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    padding: 0 15px;
}

.swiper-text .title {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
    color: #FFFF;
}

.swiper-text .title-h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #FFFF !important;
}

/* Swiper Container */
.swiper-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px 0 60px;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.swiper-slide:hover {
    transform: translateY(-10px);
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.swiper-slide:hover img {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.swiper-slide:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.slide-overlay p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Pagination */
.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: #99c21c !important;
    opacity: 1 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .swiper-text .title-h1 {
        font-size: 32px;
    }

    .swiper-slide img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .swiper-section {
        padding: 40px 0;
    }

    .swiper-text {
        text-align: center;
    }

    .swiper-text .title {
        font-size: 14px;
    }

    .swiper-text .title-h1 {
        font-size: 28px;
    }

    .swiper-slide img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .swiper-section {
        padding: 30px 0;
    }

    .swiper-text {
        margin-bottom: 20px;
    }

    .swiper-text .title-h1 {
        font-size: 24px;
    }

    .swiper-slide img {
        height: 200px;
    }

    .slide-overlay {
        padding: 15px;
    }

    .slide-overlay h3 {
        font-size: 16px;
    }

    .slide-overlay p {
        font-size: 12px;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] .swiper-text {
    text-align: right;
}
/* Mobile - 1 photo par slide */
@media screen and (max-width: 767px) {
    .swiper-slide {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .slide-overlay {
        display: none !important;
    }

    .swiper-slide:hover {
        transform: none !important;
    }

    .swiper-slide:hover img {
        transform: none !important;
    }

    .swiper-slide img {
        height: 250px;
        object-fit: cover;
    }
}

/* Petits mobiles */
@media screen and (max-width: 576px) {
    .swiper-slide img {
        height: 220px;
    }
}

/* Très petits mobiles */
@media screen and (max-width: 375px) {
    .swiper-slide img {
        height: 200px;
    }
}

/* testimonials section */
 .testi-section {
     background: url("../img/baf16dd2e07bebd7d42628954bdef0ddee2345ed.jpg") no-repeat center center;
     background-size: cover;
     padding: 80px 0;
     /* space top & bottom */
     position: relative;
 }
/* .testi-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
} */

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns */
    grid-gap: 40px;
    align-items: start;
}

.testi-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testi-left .icon {
    font-size: 40px;
    color: #99c21c;
    margin-bottom: 20px;
}

.testi-left .testi-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffff;
        font-size: 3rem;
}

.testi-left .testi-desc {
    font-size: 16px;
    line-height: 26px;
    color: #ffff;
    margin-bottom: 15px;
}

.testi-left .testi-sec {
    font-size: 14px;
    font-weight: 500;
    color: #ffff;
}

/* Responsive */
@media (max-width: 768px) {
    .testi-grid {
        grid-template-columns: 1fr; /* stack on mobile */
        grid-gap: 30px;
    }
}
@media (min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1496px !important;
    }
}
/* services  */

.services-section .service-card {
    position: relative;
    padding: 30px;
    border: 1px solid #eee;

    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
}

.services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-weight: bold;
    color: #ccc;
}

.service-icon {
    font-size: 40px;
    color: #99c21c; /* orange */
}

.service-link {
    color: #99c21c;
    text-decoration: none;
    font-weight: 500;
}

.service-link span {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.service-link:hover span {
    margin-left: 10px;
}
.service-card {
    position: relative;
    background: #ffffff;              /* white card */
    border: 1px solid #e5e7eb;         /* light grey border */

    padding: 24px;
    height: 100%;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); /* soft shadow */
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

/* number top-right */
.service-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-weight: 600;
    color: #cbd5e1; /* soft grey */
}

/* icon */
.service-icon {
    font-size: 40px;
    color: #99c21c; /* orange */
}

/* link */
.service-link {
    color: #99c21c;
    font-weight: 500;
    text-decoration: none;
}

.service-link span {
    margin-left: 6px;
    transition: margin-left 0.3s ease;
}

.service-link:hover span {
    margin-left: 12px;
}
.service-image img {
    width: 64px;
    height: 64px;
}

.btn-wrapper {
    position: relative;
    display: inline-block;
}

/* grey background layer */
.btn-bg {
    position: absolute;
    top: 6px;      /* offset */
    left: 6px;     /* offset */
    width: 100%;
    height: 100%;
    background-color: #e5e7eb;
    border-radius: 30px;
    z-index: 0;
}

/* main dark button */
.btn-dark {
    position: relative;
    display: inline-block;
    background-color: #99c21c;
    color: #ffffff;
    border-radius: 30px;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 500;
    z-index: 1;
}

/* optional: hover effect (slight lift) */
.btn-dark:hover {
    transform: translateY(-2px);
}

/* SERVICE PAGE  */

        .page-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .page-header h1 {
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .page-header p {
            color: var(--text-gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 20px;
        }

        /* Custom row class to ensure proper spacing */
        .services-row {
            margin-bottom: 60px;
        }

        /* Last row shouldn't have extra bottom margin */
        .services-row:last-child {
            margin-bottom: 0;
        }

        .service-card {
            background-color: white;

            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #eaeaea;
            padding: 25px;
            height: 100%;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 40px; /* Space for button that extends outside */
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .card-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .card-title {
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .phone-container {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .phone-icon {
            display: inline-block;
            width: 24px;
            height: 24px;
            background-color: #e9ecef;
            border-radius: 50%;
            position: relative;
            margin-right: 10px;
        }

        .phone-icon:before {
            content: "";
            position: absolute;
            top: 6px;
            left: 8px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: 2px solid #495057;
        }

        .phone-icon:after {
            content: "";
            position: absolute;
            top: 16px;
            left: 6px;
            width: 12px;
            height: 6px;
            border-radius: 2px;
            border: 2px solid #495057;
            border-top: none;
        }

        .phone-number {
            font-weight: 600;
            color: #495057;
        }

        .card-divider {
            height: 1px;
            background-color: #eaeaea;
            margin: 0 0 18px 0;
            border: none;
        }

        .card-description {
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .card-button {
            background-color: #99c21c;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            position: absolute;
            bottom: -20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
        }

        .card-button:hover {
            background-color: #99c21c;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
            color: white;
        }

        .button-arrow {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .card-button:hover .button-arrow {
            transform: translateX(5px);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .services-row {
                margin-bottom: 50px;
            }

            .service-card {
                margin-bottom: 45px;
            }
        }

        @media (max-width: 768px) {
            .services-row {
                margin-bottom: 40px;
            }

            .service-card {
                margin-bottom: 40px;
            }

            .card-button {
                right: 50%;
                transform: translateX(50%);
                width: auto;
                white-space: nowrap;
            }

            .card-button:hover {
                transform: translateX(50%) translateY(-2px);
            }
        }












        /* NEW CODE  */



  /* ===== VERSION DESKTOP (par défaut) ===== */
.testimonials-section {
    background-image: url("../img/swiperbg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
    position: relative;
}

.testi-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: stretch;
}

/* Left Side - Header */
.testimonials-header {
    color: white;
}

.quote-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    fill: #99c21c;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94A3B8;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1rem;
    color: #94A3B8;
    line-height: 1.8;
    max-width: 90%;
}

/* Right Side - Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    width: 100%;
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    border-radius: 0;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Carousel Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #475569;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot.active {
    background: #99c21c;
    width: 32px;
    border-radius: 20px;
}

.dot:hover {
    background: #99c21c;
    transform: scale(1.2);
}

/* ===== LAPTOPS (1025px - 1366px) ===== */
@media screen and (max-width: 1366px) {
    .testi-container {
        max-width: 1200px;
        gap: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 2.5rem;
    }
}

/* ===== SMALL LAPTOPS / TABLETS LANDSCAPE (993px - 1024px) ===== */
@media screen and (max-width: 1024px) {
    .testimonials-section {
        padding: 5rem 2rem;
    }

    .testi-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 900px;
    }

    .testimonials-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .quote-icon {
        margin: 0 auto 2rem auto;
    }

    .section-description {
        max-width: 100%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 2.5rem;
    }
}

/* ===== TABLETS PORTRAIT (768px - 992px) ===== */
@media screen and (max-width: 992px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .testi-container {
        gap: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .carousel-dots {
        margin-top: 2.5rem;
    }
}

/* ===== LARGE PHONES / SMALL TABLETS (577px - 767px) ===== */
@media screen and (max-width: 767px) {
    .testimonials-section {
        padding: 3.5rem 1.25rem;
    }

    .testi-container {
        gap: 2rem;
    }

    .quote-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-role {
        font-size: 0.8rem;
    }

    .carousel-dots {
        margin-top: 2rem;
        gap: 0.8rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 28px;
    }
}

/* ===== PHONES (376px - 576px) ===== */
@media screen and (max-width: 576px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testi-container {
        gap: 1.75rem;
    }

    .quote-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .testimonial-author {
        gap: 0.75rem;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-role {
        font-size: 0.75rem;
    }

    .carousel-dots {
        margin-top: 1.75rem;
        gap: 0.7rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }
}

/* ===== SMALL PHONES (320px - 375px) ===== */
@media screen and (max-width: 375px) {
    .testimonials-section {
        padding: 2.5rem 0.75rem;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-role {
        font-size: 0.7rem;
    }

    .carousel-dots {
        margin-top: 1.5rem;
        gap: 0.6rem;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        width: 20px;
    }
}

/* ===== TRÈS PETITS ÉCRANS (MOINS DE 320px) ===== */
@media screen and (max-width: 319px) {
    .testimonials-section {
        padding: 2rem 0.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .section-description {
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
    }

    .carousel-dots {
        gap: 0.5rem;
    }
}

/* ===== ORIENTATION SPÉCIFIQUE ===== */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .testimonials-section {
        padding: 3rem 2rem;
    }

    .testi-container {
        gap: 2rem;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ===== HAUTE DENSITÉ D'ÉCRANS (4K, etc.) ===== */
@media screen and (min-width: 1921px) {
    .testi-container {
        max-width: 1600px;
        gap: 5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-description {
        font-size: 1.2rem;
        max-width: 80%;
    }

    .testimonial-card {
        padding: 4rem;
    }

    .testimonial-text {
        font-size: 1.3rem;
    }

    .author-name {
        font-size: 1.3rem;
    }

    .author-role {
        font-size: 1rem;
    }
}
.phone-link {
    color: #333;
    text-decoration: none;  /* Enlève le soulignement */
    font-weight: 500;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--primary-color, #99c21c);
    text-decoration: none;  /* Pas de soulignement non plus au survol */
}

.phone-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.phone-number {
    font-weight: 500;
    color: #333;
}
