/* ============================================
   VARIABLES & ROOT - THEME LUXE & PROFESSIONNEL
   ============================================ */
:root {
    /* Couleurs principales - Thème sombre luxueux */
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --primary-light: #e8c547;
    --secondary-color: #1a1a1a;
    --accent-color: #c9a961;
    --accent-gold: #d4af37;
    --accent-bronze: #cd7f32;
    
    /* Couleurs de fond */
    --bg-dark: #0f0f0f;
    --bg-darker: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-light: #242424;
    --bg-light: #2a2a2a;
    --bg-white: #1f1f1f;
    
    /* Couleurs de texte */
    --text-dark: #ffffff;
    --text-light: #b8b8b8;
    --text-muted: #888888;
    --text-gold: #d4af37;
    
    /* Ombres premium */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6), 0 10px 20px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Gradients premium */
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8941f 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(201, 169, 97, 0.95) 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    --gradient-card: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
}

/* Override Bootstrap success color */
.text-success {
    color: var(--primary-color) !important;
}

.bg-success {
    background: var(--gradient-gold) !important;
}

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

.bg-white {
    background: var(--bg-card) !important;
}

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

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

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-light);
    background: var(--bg-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Exclure les icônes de la police Roboto */
i, [class*="fa-"], [class*="icon"], .fas, .far, .fal, .fab, .fa, .bi, [class*="bi-"] {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", "bootstrap-icons" !important;
    font-weight: 900;
}

.fab {
    font-family: "Font Awesome 5 Brands" !important;
}

.far, .fal {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1, h2 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: var(--bg-white);
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
    background: var(--bg-dark);
}

.spinner-border {
    border-color: var(--primary-color);
    border-right-color: transparent;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    transition: all 0.3s ease !important;
    z-index: 999 !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: var(--gradient-primary) !important;
    color: white !important;
    box-shadow: var(--shadow-lg) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.back-to-top:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-xl), var(--shadow-gold) !important;
    background: var(--gradient-gold) !important;
    color: var(--bg-dark) !important;
}

.back-to-top i {
    font-size: 18px;
    color: white;
}

@media (max-width: 768px) {
    .back-to-top {
        right: 15px !important;
        bottom: 15px !important;
        width: 45px !important;
        height: 45px !important;
    }
    
    .back-to-top i {
        font-size: 16px;
    }
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 16px;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-success {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
    color: white;
}

.btn-success:active {
    transform: translateY(0);
}

.btn-outline-success {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-success:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-success.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-orange {
    color: var(--bs-white);
    border: none;
}

.btn.btn-orange:hover {
    background: var(--bs-dark);
    color: #18534F;
}

.btn.btn-light {
    color: #18534F;
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: #18534F;
}


/*** Topbar Start ***/
.topbar {
    background: var(--bg-white) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.topbar a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.topbar a:hover {
    color: var(--primary-color);
}

.topbar i {
    font-size: 12px;
}

.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--primary-color);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--primary-color);
    color: white;
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bg-white);
    padding-top: 11px;
    border: 0;
    transition: .5s;
    opacity: 1;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
}

/*** Topbar End ***/



/*** Navbar ***/
.navbar {
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-light {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.sticky-top.navbar-light {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 4px;
    padding: 28px 12px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: nowrap;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 16px 12px;
    color: var(--text-light);
    font-size: 14px;
    white-space: nowrap;
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--text-light);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.navbar-brand {
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sticky-top .navbar-brand {
    padding: 8px 0;
}

.navbar-brand h1 {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.sticky-top .navbar-brand h1 {
    font-size: 18px;
}

.navbar-brand h1 i {
    font-size: 0.9em;
    margin-right: 8px;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: #18534F;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: rgba(26, 26, 26, 0.98) !important;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 16px;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        border-radius: 8px;
        font-size: 18px;
        transition: all 0.3s ease;
    }
    
    .navbar.navbar-expand-lg .navbar-toggler:hover {
        background: var(--primary-color);
        color: white;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--text-light) !important;
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--text-light) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: rgba(26, 26, 26, 0.98) !important;
    }

        .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 2.5px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gradient-primary);
        border-radius: 2px 2px 0 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: calc(100% - 28px);
    }
    
    .sticky-top .navbar-light .navbar-nav .nav-link::after {
        height: 2px;
    }
    
    .sticky-top .navbar-light .navbar-nav .nav-link:hover::after,
    .sticky-top .navbar-light .navbar-nav .nav-link.active::after {
        width: calc(100% - 28px);
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
    filter: brightness(0.85);
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    height: 750px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.header-carousel .owl-nav .owl-prev {
    bottom: 40px;
    left: 40px;
    margin-left: 80px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 40px;
    left: 40px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
    display: flex;
    align-items: center;
}

.header-carousel .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.4));
}

.header-carousel .carousel-caption h4 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.header-carousel .carousel-caption p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }


    .header-carousel .owl-nav .owl-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}


.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.about h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about .d-flex i {
    color: var(--primary-color);
}

.about .d-flex h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.about .d-flex p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.about .col-xl-5 {
    max-width: 400px;
    margin: 0 auto;
}

.about .col-xl-5 img {
    width: 100%;
    height: auto;
    display: block;
}

.about .col-xl-5 .rounded:first-child {
    margin-bottom: 20px;
}

.about .col-xl-5 .rounded:last-child {
    margin-top: 0;
}

@media (min-width: 1200px) {
    .about .col-xl-5 {
        max-width: 450px;
    }
}
/*** About End ***/

/*** Service Start ***/
.service {
    background: var(--bg-darker);
    padding: 100px 0;
}

.service .service-item {
    background: var(--gradient-card);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service .service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    height: 250px;
}

.service .service-item .service-img img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service .service-item:hover .service-img img {
    transform: scale(1.15);
}

.service .service-item .service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: all 0.4s ease;
}

.service .service-item:hover .service-img::after {
    opacity: 0.3;
}

.service .service-item .rounded-bottom {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service .service-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.service .service-item:hover h4 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.service .service-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.service .service-item a {
    text-decoration: none;
    color: inherit;
}
/*** Service End ***/


/*** Features Start ***/
.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    border: 1px solid transparent;
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid #18534F;
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}
/*** Features End ***/

/*** Offer Start ***/
.offer-section .nav a.accordion-link {
    width: 100%;
    border-radius: 10px;
    display: flex;
    background: var(--bs-white);
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active {
    color: var(--bs-white);
    background: #18534F;
}

.offer-section .nav a.accordion-link h5 {
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
    color: var(--bs-white);
}
/*** Offer End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: #18534F;
}

.blog .blog-item .blog-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--bs-white);
    background: #18534F;
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: #18534F;
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: #18534F;
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: #18534F;
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: #18534F;
}
/*** Blog End ***/


/*** FAQs Start ***/
.faq-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.faq-section .accordion {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent !important;
    border: none !important;
}

.faq-section .accordion-flush {
    background: transparent !important;
}

.faq-section .accordion-item {
    border: none !important;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2) !important;
    background: transparent !important;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    transform: translateY(-2px);
}

.faq-section .accordion-item:last-child {
    border-bottom: 2px solid rgba(212, 175, 55, 0.2) !important;
    margin-bottom: 0;
}

.faq-section .accordion-header {
    margin: 0;
}

.faq-section .accordion-button,
.faq-section button.accordion-button,
.faq-section .accordion-header button,
.faq-section .accordion-header .accordion-button,
.faq-section .accordion-item .accordion-button,
.faq-section .accordion-item button.accordion-button,
.faq-section .accordion-flush .accordion-button,
.faq-section .accordion-flush button.accordion-button {
    background: #1a1a1a !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    padding: 24px 32px !important;
    border: 2px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.faq-section .accordion-button.collapsed,
.faq-section button.accordion-button.collapsed,
.faq-section .accordion-header button.collapsed,
.faq-section .accordion-header .accordion-button.collapsed,
.faq-section .accordion-item .accordion-button.collapsed,
.faq-section .accordion-item button.accordion-button.collapsed,
.faq-section .accordion-flush .accordion-button.collapsed,
.faq-section .accordion-flush button.accordion-button.collapsed {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border-color: rgba(212, 175, 55, 0.2) !important;
}

.faq-section .accordion-button *,
.faq-section button.accordion-button *,
.faq-section .accordion-button span,
.faq-section .accordion-button::before,
.faq-section .accordion-button::after {
    color: #ffffff !important;
}

/* Force le texte à être blanc pour tous les boutons collapsed */
.faq-section button[class*="accordion-button"][class*="collapsed"],
.faq-section .accordion-button.collapsed,
.faq-section [class*="accordion-button"].collapsed,
.faq-section #accordionFlushSection .accordion-button.collapsed,
.faq-section #accordionFlushSection button.collapsed {
    color: #ffffff !important;
    background-color: #1a1a1a !important;
}

.faq-section button[class*="accordion-button"][class*="collapsed"] *,
.faq-section .accordion-button.collapsed *,
.faq-section #accordionFlushSection .accordion-button.collapsed * {
    color: #ffffff !important;
}

/* Règle ultra-spécifique pour forcer la couleur */
.faq-section .accordion-flush .accordion-item .accordion-header .accordion-button.collapsed {
    color: #ffffff !important;
    background: #1a1a1a !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%) !important;
    color: #d4af37 !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    color: #ffffff !important;
    background: #1a1a1a !important;
    outline: none !important;
}

.faq-section .accordion-button:hover {
    color: #d4af37 !important;
    background: #242424 !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
    transform: translateX(4px);
}

.faq-section .accordion-button.collapsed:hover {
    color: #d4af37 !important;
    background: #242424 !important;
}

.faq-section .accordion-body {
    padding: 28px 32px !important;
    background: #242424 !important;
    color: #e0e0e0 !important;
    line-height: 1.8;
    font-size: 1.0625rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-section .accordion-body a {
    color: #d4af37 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-section .accordion-body a:hover {
    color: #e8c547 !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    width: 1.5rem;
    height: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
    transform: rotate(180deg);
}
/*** FAQs End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: #18534F;
}

.team .team-item .team-img {
    width: 100%; 
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid #18534F;
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: #18534F;
    background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial {
    padding: 100px 0;
    background: var(--bg-dark);
}

.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.testimonial .testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px 24px 0 0;
    z-index: 1;
}

.testimonial .testimonial-item:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.15);
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 50px;
    margin-right: -1px;
}

.testimonial .testimonial-item:hover::before {
    opacity: 1;
}

.testimonial-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.testimonial-quote-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.testimonial .testimonial-item:hover .testimonial-quote-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.testimonial-meta {
    flex: 1;
    text-align: left;
}

.testimonial-meta h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.testimonial .testimonial-item:hover .testimonial-meta h5 {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.testimonial-meta p {
    font-size: 0.9375rem;
    color: #b8b8b8;
    margin: 0 0 4px 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.testimonial-meta p:last-child {
    margin-bottom: 0;
}

.testimonial-meta p i {
    color: #d4af37;
    font-size: 0.875rem;
    margin-right: 4px;
}

.testimonial-meta p span {
    color: rgba(184, 184, 184, 0.5);
    margin: 0 4px;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: #d4af37;
    font-size: 20px;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.testimonial-rating i:hover {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.testimonial .testimonial-item .testimonial-text {
    flex: 1;
    padding: 0;
}

.testimonial .testimonial-item .testimonial-text p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #e0e0e0;
    font-style: normal;
    position: relative;
    margin: 0;
    padding-left: 24px;
    border-left: 3px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.testimonial .testimonial-item:hover .testimonial-text p {
    border-left-color: rgba(212, 175, 55, 0.6);
    color: #f0f0f0;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -70px;
    left: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -70px;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 20px 6px 0 6px;
    background: #cbd5e1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-carousel .owl-dots .owl-dot:hover {
    background: var(--primary-light);
    transform: scale(1.2);
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 32px;
    height: 12px;
    border-radius: 6px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dots .owl-dot span {
    display: none;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bg-darker);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: #18534F;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: #18534F;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bg-darker);
    padding: 24px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.copyright a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--primary-color);
}
/*** copyright end ***/

/* ============================================
   SECTIONS HEADERS
   ============================================ */
.text-center h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.text-center h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.4));
}

.text-center p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE IMPROVEMENTS
   ============================================ */
@media (max-width: 991px) {
    .header-carousel .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .about h1,
    .text-center h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .header-carousel .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .about h1,
    .text-center h1 {
        font-size: 1.875rem;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
}

/*** Portfolio Start ***/
.portfolio {
    padding: 100px 0;
    background: var(--bg-dark);
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.portfolio-filter .btn {
    margin: 0;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.portfolio-item {
    display: block;
    margin-bottom: 30px;
}

.portfolio-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.portfolio-box:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
}


.portfolio-box img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-box:hover img {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(201, 169, 97, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-box:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-text {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-box:hover .portfolio-text {
    transform: translateY(0);
}

.portfolio-text h5 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}
/*** Portfolio End ***/

/*** Zone d'intervention Start ***/
.zone-intervention {
    padding: 100px 0;
    background: var(--bg-darker);
}

#map {
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

.zone-intervention h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.zone-intervention .list-unstyled li {
    font-size: 16px;
    padding: 12px 0;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.zone-intervention .list-unstyled li:hover {
    padding-left: 8px;
    color: var(--primary-color);
}

.zone-intervention .list-unstyled i {
    margin-right: 12px;
    width: 20px;
}

.zone-intervention .bg-white {
    border-radius: 16px;
    padding: 32px;
    background: var(--gradient-card) !important;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.zone-intervention .bg-white h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
/*** Zone d'intervention End ***/

/*** Certifications Start ***/
.certifications {
    padding: 100px 0;
    background: var(--bg-dark);
}

.certification-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border-radius: 16px;
    padding: 40px 32px;
    background: var(--gradient-card);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.certification-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.certification-item i {
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.certification-item:hover i {
    transform: scale(1.1);
}

.certification-item h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.certification-item:hover h5 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.certification-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}
/*** Certifications End ***/

/*** Processus Start ***/
.processus {
    padding: 100px 0;
    background: var(--bg-darker);
}

.processus-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border-radius: 16px;
    padding: 40px 32px;
    background: var(--gradient-card);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    position: relative;
}

.processus-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.processus-number {
    margin-bottom: 24px;
}

.processus-number span {
    width: 70px;
    height: 70px;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.processus-item:hover .processus-number span {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.processus-item h5 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.processus-item:hover h5 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.processus-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}
/*** Processus End ***/

/*** Contact Start ***/
.contact {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact-info {
    background: var(--gradient-card);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-info .d-flex {
    margin-bottom: 0;
}

.contact-info .flex-shrink-0 {
    margin-bottom: 16px;
}

.contact-info h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-info p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info .btn {
    margin-top: 16px;
    min-width: 200px;
}

@media (max-width: 767px) {
    .contact-info {
        padding: 40px 24px;
    }
}
/*** Contact End ***/

/*** Garanties Start ***/
.garanties {
    padding: 100px 0;
    background: var(--bg-dark);
}

.garantie-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    padding: 40px 32px;
    background: var(--gradient-card);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.garantie-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.garantie-item i {
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.garantie-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.garantie-item h5 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.garantie-item:hover h5 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.garantie-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}
/*** Garanties End ***/


