/**
* Template Name: Landify
* Template URL: https://bootstrapmade.com/landify-bootstrap-landing-page-template/
* Updated: Aug 04 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Ubuntu",  sans-serif;
  --nav-font: "Rubik",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
/*:root { 
  /* --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  /*--default-color: #3b5353; /* Default color used for the majority of the text content across the entire website */
  /*--heading-color: #193838; /* Color for headings, subheadings and title throughout the website */
  /*--accent-color: #00a19e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  /*--surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  /*--contrast-color: #ffffff; /*Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
/*}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
/*:root {
  /*--nav-color: #3b5353;  /* The default color of the main navmenu links */
  /*--nav-hover-color: #00a19e; /* Applied to main navmenu links when they are hovered over or active */
  /*--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  /*--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  /*--nav-dropdown-color: #3b5353; /* Used for navigation links of the dropdown items in the navigation menu. */
  /*--nav-dropdown-hover-color: #00a19e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
/*}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #3b533c; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #231f20; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #33b04a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --secondary-accent: #ede947; /* Secondary accent color for highlights and complementary elements */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3b533c;  /* The default color of the main navmenu links */
  --nav-hover-color: #33b04a; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3b533c; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #33b04a; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f8f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031a0f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0f302f;
  --contrast-color: #ffffff;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--accent-color);
  background-color: #f4f4f4;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .megamenu-2 {
    position: static;
    /* Hide Mobile Megamenu in Desktop */
    /* Tab Navigation */
    /* Tab Content */
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    background-color: var(--nav-dropdown-background-color);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 0;
    display: flex;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .megamenu-2 .tab-navigation {
    width: 270px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 0;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs {
    border: none;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item {
    width: 100%;
    padding-left: 10px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 13px;
    border: none;
    width: 100%;
    background: transparent;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    border-radius: 0;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    padding-left: 15px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active {
    background-color: var(--surface-color);
    border-left-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active i {
    color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active span {
    color: var(--accent-color);
    font-weight: 600;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link i {
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link span {
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    /* Content Grid Layout */
    /* Featured Banner */
    /* Resources Layout */
  }

  .navmenu .megamenu-2 .tab-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(8px);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link i {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 20%);
    font-size: 20px;
    transition: all 0.3s;
    min-width: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div small {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-size: 14 px;
    line-height: 1.3;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info h5 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info p {
    color: var(--nav-dropdown-color);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover i {
    transform: translateX(4px);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn i {
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category h5 {
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover i {
    transform: translateX(3px);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
    transition: 0.3s;
  }
}

/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .megamenu-2 {
    /* Hide Desktop Megamenu in Mobile */
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul li a {
    padding-left: 35px;
    font-size: 14px;
    font-weight: 400;
  }

  .navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

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

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  font-size: 1.5rem;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 140px 0 60px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 50%);
  pointer-events: none;
}

.hero .hero-content {
  padding: 20px 0;
}

.hero .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--heading-color);
}

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

.hero .hero-content .hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
  }
}

.hero .hero-content .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero .hero-content .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-actions .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-actions .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 48px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
}

.hero .hero-content .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-content .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.hero .hero-content .hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.hero .hero-visual {
  position: relative;
}

.hero .hero-visual .hero-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.hero .hero-visual .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-visual .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero .hero-visual .floating-elements .floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floating 3s ease-in-out infinite;
}

.hero .hero-visual .floating-elements .floating-card i {
  font-size: 1.125rem;
  color: var(--accent-color);
}

.hero .hero-visual .floating-elements .floating-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
  white-space: nowrap;
}

.hero .hero-visual .floating-elements .floating-card.card-1 {
  top: 10px;
  left: 40%;
  animation-delay: 0s;
}

.hero .hero-visual .floating-elements .floating-card.card-2 {
  top: 50%;
  right: 15px;
  animation-delay: -1s;
}

.hero .hero-visual .floating-elements .floating-card.card-3 {
  bottom: 25%;
  left: 15px;
  animation-delay: -2s;
}

@media (max-width: 768px) {
  .hero .hero-visual .floating-elements .floating-card {
    padding: 12px 16px;
  }

  .hero .hero-visual .floating-elements .floating-card span {
    font-size: 0.75rem;
  }

  .hero .hero-visual .floating-elements .floating-card.card-1 {
    left: 5px;
  }

  .hero .hero-visual .floating-elements .floating-card.card-2 {
    right: 5px;
  }

  .hero .hero-visual .floating-elements .floating-card.card-3 {
    left: 10px;
  }
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
}

/*--------------------------------------------------------------
# Hero Accueil Section
--------------------------------------------------------------*/
.hero-accueil {
  padding: 140px 0 60px 0;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;

  display: flex;
  align-items: center;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background-position: center;
  background-size: cover; */
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 20px 0;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.hero-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-buttons-container {
  position: relative;
  z-index: 10;
  margin-top: 400px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--accent-color);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
}

.btn-hero-primary:hover {
  background: #2a8e3c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-family: 'Montserrat', sans-serif;
}

.btn-hero-secondary:hover {
  background: white;
  color: #231f20;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Navigation Swiper */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: white;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.hero-swiper .swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
  width: 12px;
  height: 12px;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

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

@media (max-width: 768px) {
  .hero-title {
      font-size: 2.2rem;
  }
  
  .hero-description {
      font-size: 1.1rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
      padding: 12px 25px;
      font-size: 1rem;
  }
  
  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
      font-size: 1.8rem;
  }
  
  .hero-description {
      font-size: 1rem;
      margin-bottom: 30px;
  }
  
  .hero-accueil {
      padding: 120px 0 40px 0;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content-wrapper {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .about .content-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.about .section-header {
  margin-bottom: 2rem;
}

.about .section-header h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .section-header h2 {
    font-size: 1.875rem;
  }
}

.about .section-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.about .lead-text {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.about .lead-text span{
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 400;
}

.about .description-text {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}


.about .cta-wrapper {
  margin-top: 40px;
}

.about .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.about .btn-cta:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-cta i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.about .btn-cta:hover i {
  transform: translateX(3px);
}

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .about .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.about .stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .stat-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about .visual-section {
  position: relative;
}

.about .main-image-container {
  position: relative;
  margin-bottom: 2rem;
}

.about .main-image-container .main-visual {
  border-radius: 12px;
  transition: transform 0.3s ease;
  width: 120%;   /* agrandit l’image */
  height: auto;  /* conserve les proportions */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about .main-image-container .main-visual:hover{
  transform: scale(1.05);
}

.about .main-image-container .overlay-card {
  position: absolute;
  bottom: -15px;
  right: -20px;
  background-color: var(--surface-color);
  /* padding: 1.5rem; */
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .main-image-container .overlay-card img{
  position: absolute;
  bottom: -15px;
  right: -20px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 280px;
}

@media (max-width: 992px) {
  .about .main-image-container .overlay-card {
    position: static;
    margin-top: 2rem;
    max-width: none;
  }
}

.about .main-image-container .overlay-card .card-content {
  position: relative;
}

.about .main-image-container .overlay-card .card-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: var(--heading-color);
}

.about .main-image-container .overlay-card .card-content p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.about .main-image-container .overlay-card .card-content .card-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .main-image-container .overlay-card .card-content .card-icon i {
  font-size: 1.125rem;
}

.about .secondary-images .secondary-img {
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .secondary-images .secondary-img:hover {
  transform: scale(1.05);
}

.about .features-section {
  padding: 3rem 0;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 12px;
  margin-top: 2rem;
}

.about .feature-box {
  text-align: center;
  padding: 1.5rem;
}

.about .feature-box .feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.about .feature-box .feature-icon:hover {
  transform: translateY(-5px);
}

.about .feature-box h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
}

.about .feature-box p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin: 0;
}




/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .tabs-wrapper {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-tabs {
  border: 0;
  gap: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .features .nav-tabs {
    flex-direction: column;
    gap: 15px;
  }
}

.features .nav-item {
  flex: 1;
  min-width: 0;
}

@media (max-width: 992px) {
  .features .nav-item {
    flex: none;
  }
}

.features .nav-link {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 80px;
  cursor: pointer;
}

.features .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@media (max-width: 768px) {
  .features .nav-link {
    padding: 20px 15px;
    min-height: 70px;
  }
}

.features .nav-link .tab-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features .nav-link .tab-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link .tab-icon {
    width: 40px;
    height: 40px;
  }

  .features .nav-link .tab-icon i {
    font-size: 20px;
  }
}

.features .nav-link .tab-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.features .nav-link .tab-content h5 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features .nav-link .tab-content h5 {
    font-size: 14px;
  }
}

.features .nav-link .tab-content span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features .nav-link .tab-content span {
    font-size: 12px;
  }
}

.features .nav-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .nav-link:hover::before {
  opacity: 1;
}

.features .nav-link:hover .tab-icon {
  background: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover .tab-icon i {
  color: var(--accent-color);
}

.features .nav-link:hover .tab-content h5,
.features .nav-link:hover .tab-content span {
  color: var(--contrast-color);
}

.features .nav-link.active {
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .nav-link.active::before {
  opacity: 1;
}

.features .nav-link.active .tab-icon {
  background: var(--contrast-color);
}

.features .nav-link.active .tab-icon i {
  color: var(--accent-color);
}

.features .nav-link.active .tab-content h5,
.features .nav-link.active .tab-content span {
  color: var(--contrast-color);
}

.features .tab-content .tab-pane {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .features .tab-content .tab-pane {
    padding: 20px 0;
  }
}

.features .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .features .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.features .content-wrapper .icon-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .content-wrapper .icon-badge i {
  font-size: 30px;
  color: var(--contrast-color);
}

.features .content-wrapper h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .features .content-wrapper h3 {
    font-size: 24px;
  }
}

.features .content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.features .content-wrapper .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features .content-wrapper .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.features .content-wrapper .feature-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.features .content-wrapper .feature-grid .feature-item i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.features .content-wrapper .feature-grid .feature-item span {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.4;
}

.features .content-wrapper .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features .content-wrapper .stats-row {
    gap: 20px;
  }
}

.features .content-wrapper .stats-row .stat-item {
  text-align: center;
}

.features .content-wrapper .stats-row .stat-item .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 576px) {
  .features .content-wrapper .stats-row .stat-item .stat-number {
    font-size: 20px;
  }
}

.features .content-wrapper .stats-row .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features .content-wrapper .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .content-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

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

.features .content-wrapper .btn-primary i {
  transition: transform 0.3s ease;
}

.features .visual-content {
  position: relative;
}

.features .visual-content .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .visual-content .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.features .visual-content .main-image:hover img {
  transform: scale(1.05);
}

.features .visual-content .floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--surface-color);
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

@media (max-width: 576px) {
  .features .visual-content .floating-card {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
    gap: 10px;
  }
}

.features .visual-content .floating-card i {
  font-size: 28px;
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .features .visual-content .floating-card i {
    font-size: 24px;
  }
}

.features .visual-content .floating-card .card-content span {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.features .visual-content .floating-card .card-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .features .visual-content .floating-card .card-content strong {
    font-size: 14px;
  }
}

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

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards .feature-card,
.features-cards .compliance-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.features-cards .feature-card:hover,
.features-cards .compliance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent-color);
}

.features-cards .feature-card .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.features-cards .feature-card .icon-box i {
  font-size: 28px;
  color: var(--accent-color);
}

.features-cards .feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-cards .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.features-cards .feature-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.features-cards .feature-card .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 15px;
}

.features-cards .feature-card .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
  flex-shrink: 0;
}

.features-cards .feature-card .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.features-cards .feature-card .read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.features-cards .feature-card .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.features-cards .feature-card .read-more:hover i {
  transform: translateX(5px);
}

.features-cards .compliance-card {
  text-align: center;
  padding: 25px 20px;
}

.features-cards .compliance-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-cards .compliance-card .status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.features-cards .compliance-card .status.in-progress {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.features-cards .compliance-card .status.compliant {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.features-cards .compliance-card .status.planned {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

@media (max-width: 992px) {
  .features-cards .feature-card {
    margin-bottom: 20px;
  }

  .features-cards .compliance-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .features-cards .feature-card .icon-box {
    width: 50px;
    height: 50px;
  }

  .features-cards .feature-card .icon-box i {
    font-size: 24px;
  }

  .features-cards .feature-card h3 {
    font-size: 20px;
  }

  .features-cards .compliance-card h4 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-card {
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 5px 10px 30px color-mix(in srgb, var(--default-color), transparent 80%);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.features-2 .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), var(--surface-color));
  /* border: 0.1px solid color-mix(in srgb, var(--accent-color), transparent 75%); */
}

.features-2 .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 40%));
  color: var(--contrast-color);
}

/* Styles spécifiques pour l'image */
.features-2 .feature-icon img {
  width: 80%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Rend l'image blanche */
}

.features-2 .feature-icon i {
  font-size: 1.75rem;
}

.features-2 h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-2 .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.features-2 .cta-wrapper {
  margin-top: 40px;
}

.features-2 .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.features-2 .btn-cta:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features-2 .btn-cta i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.features-2 .btn-cta:hover i {
  transform: translateX(3px);
}

.features-2 .feature-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.features-2 .feature-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.features-2 .feature-benefits li i {
  color: var(--accent-color);
  font-size: 1rem;
}

.features-2 .feature-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.features-2 .feature-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.features-2 .feature-image img:hover {
  transform: scale(1.05);
}

.features-2 .feature-testimonial {
  margin-top: 4rem;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 94%);
  overflow: hidden;
}

.features-2 .testimonial-image {
  height: 100%;
}

.features-2 .testimonial-image img {
  height: 100%;
  object-fit: cover;
}

.features-2 .testimonial-content {
  padding: 3rem;
}

.features-2 .testimonial-content .quote-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 1.75rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.features-2 .testimonial-content p {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.features-2 .testimonial-content .testimonial-author h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.features-2 .testimonial-content .testimonial-author span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .features-2 .feature-card {
    margin-bottom: 1.5rem;
    padding: 2rem;
  }

  .features-2 .testimonial-content {
    padding: 2rem;
    text-align: center;
  }

  .features-2 .testimonial-content .quote-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .features-2 .feature-testimonial {
    margin-top: 2rem;
  }

  .features-2 .testimonial-image {
    max-height: 300px;
    overflow: hidden;
  }

  .features-2 .testimonial-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .features-2 .testimonial-content {
    padding: 1.5rem;
  }

  .features-2 .testimonial-content p {
    font-size: 1.1rem;
  }
}



/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

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

.clients .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Banques Section
--------------------------------------------------------------*/
.banque .swiper {
  padding: 10px 0;
}

.banque .swiper-wrapper {
  height: auto;
}

.banque .swiper-slide img {
  transition: 0.3s;
}

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

.banque .banque-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.banque .banque-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.banque .banque-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .banque .banque-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.banque .banque-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.testimonials .testimonial-content:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: justify;       /* Active la justification du texte */
  text-justify: inter-word;   /* Améliore l’espacement entre les mots (selon support navigateur) */
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .main-headline {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
        
}

.stats .main-headline i {
  color: #ece80b;
}

.stats .main-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.stats .certification-image {
  max-width: 800px;
  max-height: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
}

.stats .certification-image:hover {
  transform: translateY(-5px);
  z-index: 10;
}

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

.stats .certification-caption {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.stats .certification-image:hover img {
  transform: scale(1.05);
}

/* Effet de superposition au survol */
.stats .certification-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.stats .certification-image:hover::after {
  opacity: 1;
}



@media (max-width: 1200px) {
  .stats .main-headline {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .stats .main-headline {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .stats .main-headline {
    font-size: 1.75rem;
  }

  .stats .main-description {
    font-size: 1rem;
  }

  .stats .stat-item {
    padding: 1.5rem 1rem;
  }

  .stats .stat-item.featured {
    transform: none;
  }

  .stats .stat-item.featured:hover {
    transform: translateY(-8px);
  }

  .stats .stat-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .stats .stat-icon i {
    font-size: 1.5rem;
  }

  .stats .stat-number {
    font-size: 2rem;
  }

  .stats .stat-label {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .intro-content .section-badge i {
  font-size: 12px;
}

.services .intro-content .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services .intro-content .section-heading {
    font-size: 2.2rem;
  }
}

.services .intro-content .section-description {
  font-size: 1.3rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: justify;
  margin-bottom: 2rem;
}

.services .intro-content .cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .intro-content .cta-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .hero-visual {
  position: relative;
}

.services .hero-visual img {
  border-radius: 20px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .services .hero-visual {
    margin-top: 3rem;
  }
}


/* Styles pour la galerie */
.services .hero-visual .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.services .hero-visual .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.services .hero-visual .gallery-item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.services .hero-visual .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services .hero-visual .gallery-item:hover img {
    transform: scale(1.05);
}

.services .hero-visual .gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services .hero-visual .gallery-item:hover::after {
    opacity: 1;
}

.services .hero-visual .gallery-item .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.services .hero-visual .gallery-item:hover .icon {
    opacity: 1;
}

.services .hero-visual .gallery-caption {
    text-align: center;
    font-style: italic;
    color: var(--default-color);
    margin-top: 10px;
}

.services .services-grid .service-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.services .services-grid .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.services .services-grid .service-card:hover .card-number span {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-grid .service-card .card-number {
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .card-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services .services-grid .service-card .card-content .service-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title a:hover {
  color: var(--accent-color);
}

.services .services-grid .service-card .card-content .service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .intro-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-radius: 16px;
  --card-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  --muted: color-mix(in srgb, var(--default-color), transparent 55%);
  --line: color-mix(in srgb, var(--default-color), transparent 85%);
  --accent-soft: color-mix(in srgb, var(--accent-color), transparent 85%);
  --accent-strong: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .pricing-toggle-container {
  text-align: center;
}

.pricing .pricing-toggle-container .pricing-toggle {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid var(--accent-soft);
}

.pricing .pricing-toggle-container .pricing-toggle .monthly,
.pricing .pricing-toggle-container .pricing-toggle .yearly {
  font-weight: 600;
  color: var(--default-color);
  opacity: 0.7;
  transition: 0.3s;
  cursor: pointer;
}

.pricing .pricing-toggle-container .pricing-toggle .monthly.active,
.pricing .pricing-toggle-container .pricing-toggle .yearly.active {
  color: var(--heading-color);
  opacity: 1;
}

.pricing .pricing-toggle-container .pricing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--accent-soft);
  transition: 0.3s;
  border-radius: 999px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  top: 3px;
  background-color: var(--surface-color);
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pricing .pricing-toggle-container .pricing-toggle .switch input:checked+.slider {
  background: var(--accent-color);
}

.pricing .pricing-toggle-container .pricing-toggle .switch input:checked+.slider::before {
  transform: translateX(26px);
}

.pricing .pricing-toggle-container .hint {
  color: var(--muted);
}

.pricing .price-card {
  background: var(--surface-color);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.pricing .price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card.featured {
  border-color: var(--accent-strong);
  box-shadow: 0 16px 44px color-mix(in srgb, var(--accent-color), transparent 80%);
  position: relative;
  background: radial-gradient(1200px 1200px at 110% -10%, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 50%) no-repeat, var(--surface-color);
}

.pricing .price-card.featured .btn-choose {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .price-card.featured .btn-choose:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 8%);
  color: var(--contrast-color);
}

.pricing .price-card .ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card .ribbon i {
  font-size: 12px;
}

.pricing .price-card .card-head {
  margin-bottom: 18px;
}

.pricing .price-card .card-head .badge-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.pricing .price-card .card-head .title {
  font-size: 22px;
  margin: 2px 0 8px;
}

.pricing .price-card .card-head .subtitle {
  color: var(--muted);
  margin: 0 0 14px;
}

.pricing .price-card .card-head .price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pricing .price-card .card-head .price-wrap .price {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 800;
  line-height: 1;
  display: none;
}

.pricing .price-card .card-head .price-wrap .price sup {
  font-size: 18px;
  top: -0.6em;
  position: relative;
  margin-right: 2px;
}

.pricing .price-card .card-head .price-wrap .price.price-monthly,
.pricing .price-card .card-head .price-wrap .price.price-yearly {
  font-size: 40px;
}

.pricing .price-card .card-head .price-wrap .price .period {
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 600;
}

.pricing .price-card .feature-list {
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}

.pricing .price-card .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--default-color);
}

.pricing .price-card .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.pricing .price-card .feature-list li.muted {
  color: var(--muted);
}

.pricing .price-card .feature-list li.muted i {
  color: var(--muted);
}

.pricing .price-card .cta {
  margin-top: auto;
}

.pricing .price-card .cta .btn-choose {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  transition: 0.3s;
}

.pricing .price-card .cta .btn-choose:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-toggle-container~.row .price-card .price-monthly {
  display: inline-flex;
}

.pricing .pricing-toggle-container~.row .price-card .price-yearly {
  display: none;
}

@supports (selector(:has(*))) {
  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .price-card .price-monthly {
    display: none;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .price-card .price-yearly {
    display: inline-flex;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .pricing-toggle .monthly {
    opacity: 0.6;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .pricing-toggle .yearly {
    opacity: 1;
    color: var(--heading-color);
  }
}

@supports not (selector(:has(*))) {
  .pricing .pricing-toggle-container .yearly::after {
    content: " ";
  }
}

@media (max-width: 992px) {

  .pricing .price-card .card-head .price-wrap .price.price-monthly,
  .pricing .price-card .card-head .price-wrap .price.price-yearly {
    font-size: 36px;
  }

  .pricing .price-card .card-head .price-wrap .price sup {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .pricing .price-card {
    padding: 22px;
  }

  .pricing .pricing-toggle-container .pricing-toggle {
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(135deg, var(--accent-color) 70%, var(--secondary-accent) 30%); */
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--accent-color) 80%, white) 50%, 
    color-mix(in srgb, var(--accent-color) 30%, var(--secondary-accent)) 50%, 
    color-mix(in srgb, var(--secondary-accent) 80%, white) 100%);
}


.call-to-action::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  transform: rotate(-15deg);
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .image-section {
  position: relative;
}

.call-to-action .image-section .main-image-wrapper {
  border-radius: 20px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.3s ease;
}


.call-to-action .image-section .main-image-wrapper:hover {
  transform: translateY(-5px);
}


.call-to-action .cta-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 93%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
  overflow: hidden;
  margin: 0 auto;
  align-items: center;
}

.call-to-action .background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .background-pattern .wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, color-mix(in srgb, var(--accent-color), transparent 96%) 30%, color-mix(in srgb, var(--accent-color), transparent 98%) 70%, transparent 100%);
  transform: skewX(-15deg) translateX(20%);
}

.call-to-action .background-pattern .geometric-shape {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .background-pattern .geometric-shape.shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  top: 5%;
  left: 10%;
  animation: floatRotate 8s ease-in-out infinite;
}

.call-to-action .background-pattern .geometric-shape.shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
  bottom: 10%;
  right: 15%;
  animation: floatRotate 6s ease-in-out infinite reverse;
}

.call-to-action .content-section {
  position: relative;
  z-index: 2;
}

.call-to-action .content-section .label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 10%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 8px 16px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.call-to-action .content-section .label-badge i {
  font-size: 1.1rem;
}

.call-to-action .content-section h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.call-to-action .content-section p {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.call-to-action .info-card {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 98%));
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-color);
}

.call-to-action .info-card .info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.call-to-action .info-card .info-header i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.call-to-action .info-card .info-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

.call-to-action .info-card .info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.call-to-action .info-card .info-text {
    font-weight: 500;
    color: var(--heading-color);
}

.call-to-action .info-card .info-detail {
    color: var(--accent-color);
    font-weight: 600;
    text-align: right;
}

.call-to-action .info-card .info-detail i{
  font-size: 1.75rem;
  color: var(--accent-color);
}

.call-to-action .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.call-to-action .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.call-to-action .features-grid .feature-item .feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.25rem;
}

.call-to-action .features-grid .feature-item span {
  font-weight: 500;
  color: var(--heading-color);
  font-size: 0.95rem;
}

.call-to-action .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.call-to-action .cta-actions .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 12px;
}

.call-to-action .cta-actions .btn.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 15%));
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 85%), 0 0 0 0 var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent-color), transparent 80%), 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .cta-actions .btn.btn-cta-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action .cta-actions .btn.btn-cta-secondary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-cta-secondary i {
  font-size: 1.2rem;
}

.call-to-action .cta-actions .secondary-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-to-action .cta-actions .secondary-action .note {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
}

.call-to-action .image-section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action .image-section .main-image-wrapper {
  position: relative;
  max-width: 450px;
}

.call-to-action .image-section .main-image-wrapper .main-img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle.circle-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  top: -20px;
  right: -30px;
  animation: pulse 4s ease-in-out infinite;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle.circle-2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
  bottom: -15px;
  left: -25px;
  animation: pulse 3s ease-in-out infinite;
}

.call-to-action .image-section .stats-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 90%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 3;
}

.call-to-action .image-section .stats-card .stat-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
}

.call-to-action .image-section .stats-card .stat-content h6 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.call-to-action .image-section .stats-card .stat-content span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.call-to-action .image-section .stats-card.card-1 {
  top: 15%;
  left: -20px;
  animation: float1 6s ease-in-out infinite;
}

.call-to-action .image-section .stats-card.card-2 {
  bottom: 20%;
  right: -25px;
  animation: float2 5s ease-in-out infinite;
}

@keyframes floatRotate {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

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

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 80px 0;
  }

  .call-to-action .cta-wrapper {
    padding: 3rem 2rem;
  }

  .call-to-action .content-section h2 {
    font-size: 2.25rem;
  }

  .call-to-action .content-section p {
    font-size: 1rem;
  }

  .call-to-action .features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .call-to-action .cta-actions .btn.btn-cta-primary {
    width: 100%;
  }

  .call-to-action .cta-actions .secondary-action {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .call-to-action .image-section {
    margin-top: 3rem;
  }

  .call-to-action .image-section .stats-card.card-1 {
    top: 10%;
    left: 0;
  }

  .call-to-action .image-section .stats-card.card-2 {
    bottom: 10%;
    right: 0;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
  }

  .call-to-action .cta-wrapper {
    padding: 2rem 1.5rem;
  }

  .call-to-action .content-section h2 {
    font-size: 1.875rem;
  }

  .call-to-action .content-section .label-badge {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }

  .call-to-action .stats-card {
    padding: 0.75rem 1rem;
  }

  .call-to-action .stats-card .stat-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .call-to-action .stats-card .stat-content h6 {
    font-size: 1.1rem;
  }

  .call-to-action .stats-card .stat-content span {
    font-size: 0.8rem;
  }

  .call-to-action .overlay-circle {
    transform: scale(0.8);
  }
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
  padding: 40px;
}

.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .blog-hero .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .blog-hero .section-title h2 {
    font-size: 2rem;
  }
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 12px;
  height: auto;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background-color: var(--surface-color);
}

.blog-hero .blog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blog-hero .blog-image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 50%;
  aspect-ratio: 16/9;
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-hero .blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-hero .blog-item:hover .blog-overlay {
  opacity: 1;
}

.blog-hero .read-more-link {
  display: inline-flex;
  align-items: center;
  background: var(--accent-color);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transform: translateY(20px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-hero .blog-item:hover .read-more-link {
  transform: translateY(0);
}

.blog-hero .read-more-link i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.blog-hero .blog-content {
  padding: 1.5rem;
}

.blog-hero .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.blog-hero .post-meta .date,
.blog-hero .post-meta .category {
  display: flex;
  align-items: center;
}

.blog-hero .post-meta .date::before,
.blog-hero .post-meta .category::before {
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-hero .post-meta .date::before {
  content: "\f282";
}

.blog-hero .post-meta .category::before {
  content: "\f5d3";
}

.blog-hero .post-title {
  margin: 0 0 10px 0;
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  font-size: 1.2rem;
  color: var(--default-color);
}

.blog-hero .blog-item p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}


.blog-hero .cta-wrapper {
  margin-top: 10px;
}

.blog-hero .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 16px 32px;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.blog-hero .btn-cta:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.blog-hero .btn-cta i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.blog-hero .btn-cta:hover i {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Newsletter Section
--------------------------------------------------------------*/

.newsletter-professionnelle {
    background: linear-gradient(135deg, var(--heading-color) 0%, var(--default-color) 100%);
    color: var(--contrast-color);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-professionnelle::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(15deg);
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-professionnelle h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--contrast-color);
}

.newsletter-professionnelle p {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--contrast-color);
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    height: auto;
    color: var(--default-color);
}

.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 161, 158, 0.25);
    border: none;
    color: var(--default-color);
}

.newsletter-form .form-control::placeholder {
    color: #9ab4b4;
}

.btn-subscribe {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-subscribe:hover {
    background: #008583;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: var(--contrast-color);
}

.newsletter-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.newsletter-image:hover {
    transform: translateY(-5px);
}

.newsletter-image img {
  transition: transform 0.5s ease;
}

.newsletter-image:hover img {
    transform: scale(1.05);
}

.form-message {
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    display: none;
    color: var(--contrast-color);
}

.loading {
    background: rgba(0, 161, 158, 0.2);
}

.error-message {
    background: rgba(179, 49, 49, 0.2);
}

.sent-message {
    background: rgba(0, 161, 158, 0.3);
}

@media (max-width: 992px) {
    .newsletter-image {
      display: none;
    }
}


/*--------------------------------------------------------------
# MessageDG Section
--------------------------------------------------------------*/
.hero-mot-du-dg {
  padding: 100px 0 20px 0;
  /* background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%); */
  position: relative;
  overflow: hidden;
}

.hero-mot-du-dg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 50%); */
  pointer-events: none;
}

.mot-du-dg {
  background: linear-gradient(180deg, var(--background-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

.mot-du-dg .hero-content {
  margin-bottom: 2rem;
}

.mot-du-dg  .hero-content .content-wrapper {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .mot-du-dg .hero-content .content-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}

.mot-du-dg .hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .mot-du-dg .hero-content h2 {
    font-size: 2.2rem;
  }
}

.mot-du-dg .hero-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: justify;
  color: color-mix(in srgb, var(--heading-color));
  margin-bottom: 2.5rem;
}

.mot-du-dg .hero-content p span{
  text-decoration: underline;
}

.mot-du-dg .hero-content .hero-image {
  position: relative;
}

.mot-du-dg .hero-content .hero-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 12px;
  z-index: -1;
}

.mot-du-dg .hero-content .hero-image img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}


/*--------------------------------------------------------------
# Explore Product Section
--------------------------------------------------------------*/
.explore-product .departments-cta {
  text-align: center;
  padding: 80px 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 8px;
}

@media (max-width: 768px) {
  .explore-product .departments-cta {
    padding: 60px 24px;
  }
}

.explore-product .cta-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .explore-product .cta-title {
    font-size: 1.75rem;
  }
}

.explore-product .cta-description {
  font-size: 20px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.explore-product .cta-wrapper {
  margin-top: 40px;
}

.explore-product .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.explore-product .btn-cta:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.explore-product .btn-cta i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.explore-product .btn-cta:hover i {
  transform: translateX(3px);
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.hero-faq {
  padding: 110px 0 20px 0;
  /* background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%); */
  position: relative;
  overflow: hidden;
}

.hero-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 50%); */
  pointer-events: none;
}

.faq .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq .section-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.faq .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.faq .faq-item.faq-active {
  border-left-color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  gap: 20px;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 1.3rem;
  text-align: justify;
  font-weight: 400;
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* Hero Section Styles */
.hero-contact {
  padding: 100px 0 20px 0;
  /* background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%); */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 50%); */
  pointer-events: none;
}

.hero-contact img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
}

.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 16px;
  text-align: justify;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 22px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 15px;
  text-align: justify;
  margin-bottom: 0;
  opacity: 0.8;
}

/* Nouveau style pour les détails de contact */
.contact .info-card .card-content .contact-detail {
  display: flex;
  align-items: center;
  margin-top: 8px;
  font-size: 15px;
  opacity: 0.8;
}

.contact .info-card .card-content .contact-detail i {
  font-size: 16px;
  color: var(--contrast-color);
  margin-right: 8px;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 380px;
  border-radius: 15px;
  border: 2px solid rgba(140, 206, 189, 0.558);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(140, 206, 189, 0.558);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}


/*--------------------------------------------------------------
# Equipe Dirigeante Section
--------------------------------------------------------------*/
.hero-equipe-dirigeante {
  background: linear-gradient(135deg, var(--default-color) 0%, #4a7050 100%);
  color: var(--contrast-color);
  padding: 140px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
        
.hero-equipe-dirigeante::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-equipe-dirigeante h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.hero-equipe-dirigeante p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Section Title */
.description-title {
  margin-bottom: 15px;
}


/* Governance Section */
.governance-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.9rem;
  line-height: 1.5;
}

/* Team Member Cards */
.governance-item {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  background: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:  0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

.governance-item.reverse {
  flex-direction: row-reverse;
}

.member-image {
  flex: 1;
  position: relative;
  padding: 30px;
}

.image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 10px;
  top: -15px;
  left: -15px;
  z-index: -1;
  transition: all 0.3s ease;
}

.governance-item:hover .image-wrapper::before {
  top: -10px;
  left: -10px;
}

.member-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

.member-info {
  flex: 1;
  padding: 40px;
}

.member-role {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.member-name {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.member-description {
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  text-align: justify;
  line-height: 1.5;
}

/* Direction Section */
.direction-section {
  padding: 80px 0;
  background-color: #f2f8f3; /* light-background */
}

.direction-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: justify;
}

.services-intro {
  max-width: 800px;
  margin: 80px auto 60px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: justify;
}

.direction-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
        
.direction-item {
  display: flex;
  align-items: center;
  background: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.direction-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.direction-item.reverse {
  flex-direction: row-reverse;
}

.direction-item-image {
  flex: 1;
  position: relative;
  padding: 30px;
}

.direction-image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.direction-image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 10px;
  top: -15px;
  left: -15px;
  z-index: -1;
  transition: all 0.3s ease;
}

.direction-item:hover .direction-image-wrapper::before {
  top: -10px;
  left: -10px;
}

.direction-item-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.direction-image-wrapper:hover img {
  transform: scale(1.03);
}

.direction-item-info {
  flex: 1;
  padding: 40px;
}

.direction-item-name {
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 15px;
}

.direction-item-role {
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
  font-size: 1.3rem;
}

.direction-item-info p {
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1.2rem;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 992px) {
  .governance-item,
  .governance-item.reverse,
  .direction-item,
  .direction-item.reverse {
    flex-direction: column;
  }
  
  .member-image, .member-info,
  .direction-item-image, .direction-item-info {
    padding: 20px;
  }
  
  .hero-equipe-dirigeante h1 {
    font-size: 2.5rem;
  }
  
  .direction-intro {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .member-name {
    font-size: 1.5rem;
  }
  
  .direction-item-name {
    font-size: 1.4rem;
  }
}


.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  transform: scale(1.05); /* Légèrement agrandie par défaut */
}

/* Style pour les écrans plus petits */
@media (max-width: 768px) {
  .hero-image-section {
      padding: 40px 0;
  }
  
  .hero-image-container {
      padding: 15px;
  }
  
  .hero-image {
      transform: scale(1); /* Pas d'agrandissement sur mobile */
  }
  
  .hero-image:hover {
      transform: scale(1.02); /* Léger agrandissement au survol sur mobile */
  }
}


/*--------------------------------------------------------------
# CONSEIL D'ADMINISTRATION Section
--------------------------------------------------------------*/
.hero-conseil-administration {
  background: linear-gradient(135deg, var(--default-color) 0%, #4a7050 100%);
  color: var(--contrast-color);
  padding: 140px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
        
.hero-conseil-administration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-conseil-administration h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.hero-conseil-administration p {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Conseil Content */
.conseil-content {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  background: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);;
  transition: all 0.3s ease;
}

.conseil-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.conseil-image {
  flex: 1;
  position: relative;
  padding: 30px;
}

.conseil-image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.conseil-image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 10px;
  top: -15px;
  left: -15px;
  z-index: -1;
  transition: all 0.3s ease;
}

.conseil-content:hover .conseil-image-wrapper::before {
  top: -10px;
  left: -10px;
}

.conseil-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.conseil-image-wrapper:hover img {
  transform: scale(1.03);
}

.conseil-info {
  flex: 1;
  padding: 40px;
}

.conseil-role {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.conseil-name {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.conseil-description {
  margin-bottom: 25px;
  line-height: 1.5;
}

.conseil-description p{
  font-size: 1.2rem;
  text-align: justify;
}

.conseil-description .conseil-attributes {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}

.conseil-description .conseil-attributes li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
  line-height: 1.5; 
}

.conseil-description .conseil-attributes li i {
  color: #e2df1d;
  margin-right: 12px;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .conseil-content {
      flex-direction: column;
  }
  
  .conseil-image, .conseil-info {
      padding: 20px;
  }
  
  .hero-conseil-administration h1 {
      font-size: 2.5rem;
  }
  
}

@media (max-width: 768px) {
  .section-title h2 {
      font-size: 2rem;
  }
  
  .conseil-name {
      font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# ORGANIGRAMME Section
--------------------------------------------------------------*/
.hero-organigramme {
  background: linear-gradient(135deg, var(--default-color) 0%, #4a7050 100%);
  color: var(--contrast-color);
  padding: 140px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
        
.hero-organigramme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-organigramme h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.hero-organigramme p {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Organigramme Section */
.organigramme-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}

.organigramme-image {
  max-width: 110%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  background-color: var(--default-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-organigramme h1 {
      font-size: 2.5rem;
  }
  
  .section-title h2 {
      font-size: 2rem;
  }
  
  .download-btn {
      padding: 12px 25px;
      font-size: 1rem;
  }
}


/*--------------------------------------------------------------
# Indicateur et Chiffres Section
--------------------------------------------------------------*/
.hero-indicateur-chiffre {
  background: linear-gradient(135deg, var(--default-color) 0%, #4a7050 100%);
  color: var(--contrast-color);
  padding: 140px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
        
.hero-indicateur-chiffre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-indicateur-chiffre h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.hero-indicateur-chiffre p {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Chiffre d'Affaires Section */
.chiffre-affaires {
  background-color: #f2f8f3;
  padding: 50px;
  border-radius: 10px;
  margin-bottom: 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chiffre-affaires h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.chiffre-affaires-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chiffre-text {
  flex: 2;
  font-size: 1.2rem;
  padding-right: 30px;
}

.chiffre-valeur {
  flex: 1;
  text-align: center;
  background: var(--accent-color);
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.valeur {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.valeur-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Tableau Section */
.tableau-section {
  margin-bottom: 80px;
  overflow-x: auto;
}

.financial-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.financial-table th {
  background-color: var(--accent-color);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.financial-table td {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}

/* Mettre en gras la première colonne du tableau */
.financial-table td:first-child,
.financial-table th:first-child {
  font-weight: 700;
}

.financial-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.financial-table tr.highlight {
  background-color: var(--secondary-accent);
  font-weight: 600;
}

.financial-table tr:last-child {
  border-bottom: 2px solid var(--accent-color);
}

.financial-table tr:hover {
  background-color: #e8f5e9;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
  .chiffre-affaires-content {
      flex-direction: column;
  }
  
  .chiffre-text {
      padding-right: 0;
      margin-bottom: 30px;
  }
  
  .financial-table {
      min-width: 800px;
  }
}

@media (max-width: 768px) {
  .hero-indicateur-chiffre h1 {
      font-size: 2.5rem;
  }
  
  .section-title h2 {
      font-size: 2rem;
  }
  
  .chiffre-affaires {
      padding: 30px;
  }
  
  .valeur {
      font-size: 2rem;
  }
}


/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.hero-page-blog {
  background: linear-gradient(135deg, var(--default-color) 0%, #4a7050 100%);
  color: var(--contrast-color);
  padding: 140px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
        
.hero-page-blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-page-blog h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.hero-page-blog p {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.blog-card {
  background: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 55%;
  aspect-ratio: 16/9;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-overlay {
  opacity: 1;
}

.read-more {
  color: white;
  background: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.blog-card:hover .read-more {
  color: #ffffff;
  transform: translateY(0);
}

.read-more i {
  margin-right: 8px;
}

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--heading-color);
  line-height: 1.3;
}

.blog-excerpt {
  margin-bottom: 20px;
  color: #555;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: auto;
}

.meta-item {
  display: flex;
  align-items: center;
  color: #777;
  font-size: 0.9rem;
}

.meta-item i {
  margin-right: 5px;
  color: var(--accent-color);
}

.blog-date {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 80px;
}

.pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 5px;
  background: #f5f5f5;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination-item:hover, .pagination-item.active {
  background: var(--accent-color);
  color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
  .blog-grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-blog h1 {
      font-size: 2.5rem;
  }
  
  .section-title h2 {
      font-size: 2rem;
  }
  
  .blog-grid {
      grid-template-columns: 1fr;
  }
  
  .blog-meta {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .meta-item {
      margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
#Blog Details Section 
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Article Top Header
--------------------------------------------------------------*/
.article-top-header {
  background: linear-gradient(135deg, var(--default-color) 0%, #4a7050 100%);
  color: white;
  padding: 150px 0 60px 0;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.article-top-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.article-top-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.article-top-title {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.article-top-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.top-meta-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.top-meta-item i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Blog Details Section 
--------------------------------------------------------------*/
.blog-detail-page {
  padding: 20px 0 80px;
}

.article-content {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 30px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.article-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 50px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body h2 {
  margin: 40px 0 20px;
  color: var(--default-color);
  font-size: 1.8rem;
  padding-bottom: 10px;
  border-bottom: 2px solid #f2f8f3;
}

.article-body h3 {
  margin: 30px 0 15px;
  color: var(--default-color);
  font-size: 1.4rem;
}

.article-body h4 {
  margin: 25px 0 15px;
  color: var(--default-color);
  font-size: 1.2rem;
}

.article-body blockquote {
  border-left: 4px solid var(--accent-color);
  padding: 20px 30px;
  margin: 30px 0;
  font-style: italic;
  color: #555;
  background-color: #f2f8f3;
  border-radius: 0 8px 8px 0;
}

.article-body blockquote footer {
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  color: var(--accent-color);
}

.article-body ul, .article-body ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.article-body th, .article-body td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.article-body th {
  background-color: var(--accent-color);
  color: white;
  font-weight: 500;
}

.article-body tr:nth-child(even) {
  background-color: #f9f9f9;
}

.article-body tr:hover {
  background-color: #f1f1f1;
}

.article-body .image-with-caption {
  margin: 30px 0;
  text-align: center;
}

.article-body .image-with-caption img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 100%;
}

.article-body .image-caption {
  margin-top: 10px;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}

.article-body .info-box {
  background-color: #f2f8f3;
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

.article-body .info-box h4 {
  margin-top: 0;
  color: var(--accent-color);
}

.article-body .comparison-table {
  margin: 40px 0;
  overflow-x: auto;
}

.article-body .step-by-step {
  background-color: #f2f8f3;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
}

.article-body .step {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-body .step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.article-body .step-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
  font-weight: bold;
}

/* Social Share */
.social-share {
  display: flex;
  align-items: center;
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.share-text {
  margin-right: 15px;
  font-weight: 600;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-button:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

/* Article Actions */
.article-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
}

.like-button, .bookmark-button {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.like-button:hover, .bookmark-button:hover {
  background: var(--accent-color);
  color: white;
}

.like-button i, .bookmark-button i {
  margin-right: 8px;
}

/* Author Bio */
.author-bio {
  display: flex;
  align-items: center;
  background: #f2f8f3;
  padding: 30px;
  border-radius: 10px;
  margin: 50px 0;
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h3 {
  margin-bottom: 10px;
}

.author-info p {
  color: #666;
}

/* Comments Section */
.comments-section {
  margin: 60px 0;
}

.comments-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.comments-list {
  margin-bottom: 40px;
}

.comment {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex-grow: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.comment-author {
  font-weight: 600;
}

.comment-date {
  color: #777;
  font-size: 0.9rem;
}

.comment-text {
  margin-bottom: 15px;
}

.comment-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.comment-action {
  color: #777;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.comment-action i {
  margin-right: 5px;
}

.comment-action:hover {
  color: var(--accent-color);
}

/* Comment Form */
.comment-form {
  background: #f2f8f3;
  padding: 30px;
  border-radius: 10px;
}

.form-title {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--default-color);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: relative;
}

.sidebar-widget {
  background: #f2f8f3;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #ddeedf;
}

.widget-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  color: var(--heading-color);
}

/* Related Posts */
.related-posts {
  list-style: none;
}

.related-post {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.related-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-post-thumb {
  width: 80px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.related-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--default-color);
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.related-post-title:hover {
  color: var(--accent-color);
}

.related-post-date {
  font-size: 0.8rem;
  color: #777;
}

/* Categories */
.categories-list {
  list-style: none;
}

.category-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.category-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.category-link {
  display: flex;
  justify-content: space-between;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-link:hover {
  color: var(--accent-color);
}

.category-count {
  background: var(--accent-color);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}

/* Tags */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #e4f1e6;
  color: var(--default-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--accent-color);
  color: white;
}

/* Newsletter */
.sidebar-widget p {
  margin-bottom: 20px;
  color: #555;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddeedf;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(106, 145, 92, 0.2);
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.newsletter-form button:hover {
  background: var(--default-color);
  transform: translateY(-2px);
}

.newsletter-form button:active {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .article-content {
    grid-template-columns: 1fr 350px;
    gap: 25px;
  }
  
  .article-top-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .article-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .sidebar {
    order: 1;
    margin-bottom: 40px;
  }
  
  .article-top-title {
    font-size: 2.2rem;
  }
  
  .article-top-meta {
    gap: 15px;
  }
  
  .main-content {
    padding: 25px;
  }
}

@media (max-width: 868px) {
  .article-top-header {
    padding: 140px 0 60px;
  }
  
  .article-top-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .article-top-meta {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .article-body {
    font-size: 1.05rem;
  }
  
  .article-body h2 {
    font-size: 1.6rem;
  }
  
  .article-body h3 {
    font-size: 1.35rem;
  }
  
  .comments-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .article-top-header {
    padding: 140px 0 50px;
  }
  
  .article-top-title {
    font-size: 1.8rem;
  }
  
  .article-top-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .top-meta-item {
    font-size: 0.9rem;
  }
  
  .main-content {
    padding: 20px;
    margin-top: -30px;
  }
  
  .article-body h2 {
    font-size: 1.5rem;
  }
  
  .article-body h3 {
    font-size: 1.3rem;
  }
  
  .article-body blockquote {
    padding: 15px 20px;
  }
  
  .social-share {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  
  .share-text {
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  .article-actions {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .author-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .comment {
    flex-direction: column;
  }
  
  .comment-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
  
  .tags-cloud {
    gap: 8px;
  }
  
  .comments-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 668px) {
  .article-top-header {
    padding: 140px 0 40px;
  }
  
  .article-top-title {
    font-size: 1.7rem;
  }
  
  .article-top-meta {
    gap: 12px;
  }
  
  .top-meta-item {
    font-size: 0.85rem;
  }
  
  .article-body .step-by-step {
    padding: 20px;
  }
  
  .comment-form {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .article-top-header {
    padding: 150px 0 40px;
  }
  
  .article-top-title {
    font-size: 1.6rem;
  }
  
  .article-top-meta {
    gap: 10px;
  }
  
  .main-content {
    padding: 15px;
    margin-top: -20px;
  }
  
  .article-body {
    font-size: 1rem;
  }
  
  .article-body h2 {
    font-size: 1.4rem;
  }
  
  .article-body h3 {
    font-size: 1.2rem;
  }
  
  .article-body .step-by-step {
    padding: 15px;
  }
  
  .comments-title {
    font-size: 1.4rem;
  }
  
  .comment-form {
    padding: 15px;
  }
  
  .related-post {
    flex-direction: column;
  }
  
  .related-post-thumb {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .category-link {
    flex-direction: column;
    gap: 5px;
  }
  
  .category-count {
    align-self: flex-start;
  }
  
  .social-share {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .share-text {
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  .article-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .article-top-header {
    padding: 140px 0 30px;
  }
  
  .article-top-title {
    font-size: 1.4rem;
  }
  
  .blog-detail-page {
    padding: 10px 0 40px;
  }
  
  .main-content {
    padding: 15px;
    margin-top: -15px;
  }
  
  .article-body h2 {
    font-size: 1.3rem;
  }
  
  .article-body h3 {
    font-size: 1.15rem;
  }
  
  .comments-title {
    font-size: 1.3rem;
  }
  
  .comment-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .sidebar-widget {
    padding: 15px;
  }
  
  .article-body table {
    font-size: 0.85rem;
  }
  
  .article-body th, 
  .article-body td {
    padding: 8px 10px;
  }
}

@media (max-width: 380px) {
  .article-top-header {
    padding: 140px 0 25px;
  }
  
  .article-top-title {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .article-top-meta {
    gap: 8px;
  }
  
  .top-meta-item {
    font-size: 0.8rem;
    justify-content: center;
  }
  
  .blog-detail-page {
    padding: 5px 0 30px;
  }
  
  .article-content {
    gap: 20px;
    margin-top: -10px;
  }
  
  .main-content {
    padding: 12px;
    margin: 0;
    border-radius: 8px;
  }
  
  .article-body {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .article-body h2 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    padding-bottom: 8px;
  }
  
  .article-body h3 {
    font-size: 1.1rem;
    margin: 20px 0 12px;
  }
  
  .article-body h4 {
    font-size: 1rem;
    margin: 18px 0 10px;
  }
  
  .article-body blockquote {
    padding: 12px 15px;
    margin: 20px 0;
    font-size: 0.9rem;
  }
  
  .article-body ul, 
  .article-body ol {
    margin-left: 15px;
    margin-bottom: 15px;
  }
  
  .article-body li {
    margin-bottom: 8px;
  }
  
  .article-body table {
    font-size: 0.75rem;
    margin: 15px 0;
  }
  
  .article-body th, 
  .article-body td {
    padding: 6px 8px;
  }
  
  .article-body .image-with-caption {
    margin: 20px 0;
  }
  
  .article-body .info-box {
    padding: 15px;
    margin: 20px 0;
  }
  
  .article-body .step-by-step {
    padding: 12px;
    margin: 20px 0;
  }
  
  .article-body .step {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  
  .article-body .step-number {
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-right: 8px;
  }
  
  .social-share {
    flex-direction: column;
    align-items: flex-start;
    margin: 30px 0;
    padding: 15px 0;
    gap: 10px;
  }
  
  .share-text {
    margin-bottom: 8px;
    margin-right: 0;
  }
  
  .share-buttons {
    gap: 8px;
  }
  
  .share-button {
    width: 35px;
    height: 35px;
  }
  
  .article-actions {
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
  }
  
  .like-button, 
  .bookmark-button {
    padding: 8px 15px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    margin: 30px 0;
  }
  
  .author-avatar {
    width: 80px;
    height: 80px;
    margin-right: 0;
    margin-bottom: 12px;
  }
  
  .comments-section {
    margin: 40px 0;
  }
  
  .comments-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .comment {
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .comment-avatar {
    width: 50px;
    height: 50px;
    margin-right: 0;
    margin-bottom: 12px;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 8px;
  }
  
  .comment-date {
    font-size: 0.8rem;
  }
  
  .comment-actions {
    gap: 12px;
    margin-top: 8px;
  }
  
  .comment-action {
    font-size: 0.8rem;
  }
  
  .comment-form {
    padding: 20px;
  }
  
  .form-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-control {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  textarea.form-control {
    min-height: 120px;
  }
  
  .submit-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .sidebar {
    margin-bottom: 30px;
  }
  
  .sidebar-widget {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .widget-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .related-post {
    flex-direction: column;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  
  .related-post-thumb {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .related-post-title {
    font-size: 0.9rem;
  }
  
  .related-post-date {
    font-size: 0.75rem;
  }
  
  .category-item {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  
  .category-link {
    flex-direction: column;
    gap: 4px;
  }
  
  .category-count {
    align-self: flex-start;
    font-size: 0.7rem;
    padding: 1px 6px;
  }
  
  .tags-cloud {
    gap: 6px;
  }
  
  .tag {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
  
  .newsletter-form input {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .newsletter-form button {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.hero-page-produits-assurance-vie {
  background: linear-gradient(135deg, var(--default-color) 0%, #4a7050 100%);
  color: var(--contrast-color);
  padding: 140px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
        
.hero-page-produits-assurance-vie::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-page-produits-assurance-vie h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.hero-page-produits-assurance-vie p {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Products Section */
.produits-section {
  padding: 60px 0;
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(410px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.produit-card {
  background: #dafbeb;
  border-radius: 10px;
  border: 1px solid #e3e3e3;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.produit-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.produit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.produit-card:hover .produit-image img {
  transform: scale(1.05);
}

.produit-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.produit-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.produit-description {
  margin-bottom: 25px;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
  color: var(--heading-color);
  flex-grow: 1;
}

.produit-description span{
  font-style: italic;
  font-weight: 800;
  color:#a5a208;
}

.produit-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s ease;
}

.produit-link i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.produit-link:hover {
  color: var(--default-color);
}

.produit-link:hover i {
  transform: translateX(5px);
}

/* Tabs Navigation */
.produits-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  border-bottom: 1px solid #eee;
}

.tab-button {
  padding: 15px 30px;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-button.active {
  color: var(--accent-color);
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
}

.tab-button:hover {
  color: var(--accent-color);
}

.tab-content-produits-assurance-vie {
  display: none;
}

.tab-content-produits-assurance-vie.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* CTA Section */
.cta-section {
  background: #247d34;
  color: var(--contrast-color);
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin: 60px 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--contrast-color);
  color: var(--default-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: var(--secondary-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button i {
  margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .produits-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-produits h1 {
      font-size: 2.5rem;
  }
  
  .section-title h2 {
      font-size: 2rem;
  }
  
  .produits-tabs {
      flex-direction: column;
      align-items: center;
  }
  
  .tab-button {
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
  }
  
  .cta-title {
      font-size: 2rem;
  }
}


/*--------------------------------------------------------------
# Produits details Assurance Vie Section
--------------------------------------------------------------*/
/* Hero Section avec image en background */
.hero-page-produits-details {
  position: relative;
  padding: 150px 0 100px;
  text-align: center;
  color: var(--contrast-color);
  overflow: hidden;
  height: 60vh;
  min-height: 300px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-page-produits-details .container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Hero Section avec image en background */
.hero-page-produits-details h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--surface-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-page-produits-details p {
  font-size: 2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Content Layout */
.produits-details {
  padding: 80px 0;
}

.content-section-product-details {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.section-title-product-details {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: var(--accent-color);
  border-bottom: 3px solid var(--secondary-accent);
  display: inline-block;
}

/* Présentation Section */
.presentation-content p {
  margin-bottom: 20px;
  font-size: 1.4rem;
  text-align: justify;
  line-height: 1.8;
}

/* Fonctionnement Section */
.fonctionnement-content p {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 1.4rem;
  line-height: 1.8;
}

.fonctionnement-subtitle {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  color: var(--default-color);
}

.fonctionnement-list {
  list-style-type: none;
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.fonctionnement-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.fonctionnement-list li::before {
  content: '•';
  color: var(--accent-color);
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: -5px;
}

/* Souscription Section */
.souscription-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  /* margin-top: 30px; */
}

.souscription-item {
  background: #f2f8f3;
  padding: 25px;
  border-radius: 10px;
}

.souscription-item h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.souscription-item h3 i {
  margin-right: 10px;
}

.souscription-list {
  list-style-type: none;
}

.souscription-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.souscription-list li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Garanties Section */
.garanties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.garantie-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.garantie-item:hover {
  background: #f2f8f3;
  transform: translateY(-5px);
}

.garantie-icon {
  background: #bebb20;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.garantie-content h3 {
  margin-bottom: 10px;
}

.garantie-content p {
  color: #555;
}

/* Avantages Section */
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.avantages-item {
  background: #f2f8f3;
  padding: 25px;
  border-radius: 10px;
}

.avantages-item h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.avantages-item h3 i {
  margin-right: 10px;
}

.avantages-list {
  list-style-type: none;
}

.avantages-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.avantages-list li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--default-color) 0%, #4a7050 100%);
  color: var(--contrast-color);
  padding: 60px 0;
  text-align: center;
  border-radius: 10px;
  margin: 60px 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--contrast-color);
  color: var(--default-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: var(--secondary-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button i {
  margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .souscription-grid {
      grid-template-columns: 1fr;
  }
  
  .garanties-grid {
      grid-template-columns: 1fr;
  }
  
  .avantages-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-page-produits-details h1 {
      font-size: 2.5rem;
  }
  
  .hero-page-produits-details p {
      font-size: 1.2rem;
  }
  
  .section-title {
      font-size: 1.5rem;
  }
  
  .content-section {
      padding: 20px;
  }
  
  .garantie-item {
      flex-direction: column;
      text-align: center;
  }
  
  .garantie-icon {
      margin-right: 0;
      margin-bottom: 15px;
  }
  
  .cta-title {
      font-size: 2rem;
  }
}



/*--------------------------------------------------------------
# Actualités/Evènements Section
--------------------------------------------------------------*/
.hero-page-actu-event {
  background: linear-gradient(135deg, var(--default-color) 0%, hsl(129, 20%, 36%) 100%);
  color: var(--contrast-color);
  padding: 140px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
        
.hero-page-actu-event::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-page-actu-event h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.hero-page-actu-event p {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* News Cards */
.news-section {
  padding: 40px 0 80px;
  background-color: var(--background-color);
}

.news-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  background: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.news-img-container {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img {
  transform: scale(1.08);
}

.news-content {
  padding: 25px;
}

.news-date {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.news-date i {
  margin-right: 8px;
}

.news-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  line-height: 1.4;
}

.news-excerpt {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Bouton En savoir plus - Design amélioré */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 25px;
}

.btn-read-more:after {
  content: '→';
  position: absolute;
  font-size: 1.5rem;
  right: 0;
  transition: transform 0.3s ease;
}

.btn-read-more:hover {
  color: var(--default-color);
  padding-right: 30px;
}

.btn-read-more:hover:after {
  transform: translateX(5px);
}

/* Event Section */
.event-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #dcf5e0 80%, #f2f1aa 20%)
}

.event-content {
  padding-right: 40px;
}

.event-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  line-height: 1.3;
}

.event-description {
  margin-bottom: 25px;
  color: var(--heading-color);
  line-height: 1.7;
  font-size: 1.25rem;
  text-align: justify;
}

.event-highlights {
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.highlight-content h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.highlight-content p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--heading-color);
}

/* Swiper Carousel */
.swiper.event-swiper {
  width: 100%;
  /* height: 650px; */
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: var(--default-color);
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

/* Gallery item for lightbox */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  width: 100%;
}

.gallery-item img {
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-links {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-links {
  opacity: 1;
}

.glightbox {
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.glightbox:hover {
  background: var(--accent-color);
  color: white;
}


/* Responsive */
@media (max-width: 992px) {
  .event-content {
      padding-right: 0;
      margin-bottom: 40px;
  }
  
  .hero-page-actu-event h1 {
      font-size: 2.5rem;
  }
  
  .hero-page-actu-event p {
      font-size: 1.2rem;
  }
  
  .section-title h2 {
      font-size: 2rem;
  }
  
  .section-title span {
      font-size: 2.5rem;
  }
  
  .swiper.event-swiper {
      height: 600px;
  }
}

@media (max-width: 768px) {
  .news-img-container {
      height: 200px;
  }
  
  .swiper.event-swiper {
      height: 300px;
  }
  
  .highlight-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
  }
}



/* ////////////////////////////////////////////////////////////////////////////////// */

/* Nouvelle Section Événement - Design Alternatif avec Swiper */
.event-section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.event-swiper-alt .gallery-item {
    height: 100%;
    border-radius: 0;
}

.event-swiper-alt .gallery-item img {
    height: 100%;
    object-fit: cover;
}

.event-content-alt {
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title-alt {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: var(--default-color);
    font-weight: 500;
}

.meta-item i {
  color: var(--accent-color);
}

.event-description-alt {
  color: var(--heading-color);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.2rem;
  text-align: justify;
}

.event-highlights-alt {
  margin-bottom: 30px;
}

.event-highlights-alt h5 {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.event-highlights-alt ul {
    list-style: none;
    padding-left: 0;
}

.event-highlights-alt li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--default-color);
}

.event-highlights-alt li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.event-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-event-primary {
    background: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-event-primary:hover {
    background: var(--default-color);
    color: white;
}

.btn-event-secondary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 23px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-event-secondary:hover {
    background: var(--accent-color);
    color: white;
}

/* Styles pour la galerie et lightbox */
.swiper.event-swiper-alt {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
}

.gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-links {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-links {
    opacity: 1;
}

.glightbox {
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.glightbox:hover {
    background: var(--accent-color);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .event-content-alt {
        padding: 30px;
    }
    
    .event-title-alt {
        font-size: 1.75rem;
    }
    
    .event-swiper-alt {
      height: 400px;
    }
}

@media (max-width: 768px) {
    .event-card .row {
        flex-direction: column-reverse;
    }
    
    .event-content-alt {
        padding: 25px;
    }
    
    .event-title-alt {
        font-size: 1.5rem;
    }
    
    .event-swiper-alt {
        height: 300px;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .btn-event-primary, .btn-event-secondary {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Mediatech Section
--------------------------------------------------------------*/
.hero-page-mediatech {
  background: linear-gradient(135deg, var(--default-color) 0%, hsl(129, 20%, 36%) 100%);
  color: var(--contrast-color);
  padding: 140px 0 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
        
.hero-page-mediatech::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-page-mediatech h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.hero-page-mediatech p {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.9;
}



/* Tabs Navigation */
.mediatech-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  gap: 10px;
  flex-wrap: wrap;
}

.mediatech-tab-button {
  background: white;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mediatech-tab-button:hover,
.mediatech-tab-button.active {
  background: var(--accent-color);
  color: white;
}

/* Tab Content */
.tab-content-mediatech {
  display: none;
}

.tab-content-mediatech.active {
  display: block;
}

.tab-description {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 50px;
  color: var(--heading-color);
  font-size: 1.5rem;
  line-height: 1.6;
}

/* Gallery Layout */
.gallery-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-links {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-links {
  opacity: 1;
}

.glightbox {
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.glightbox:hover {
  background: var(--accent-color);
  color: white;
}

/* Swiper Carousel */
.portfolio-details-slider {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: var(--default-color);
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

/* Layout spécifique pour Célébration */
.celebration-layout .gallery-row:first-child {
  height: 400px;
}

.celebration-layout .gallery-row:first-child .gallery-item:first-child {
  flex: 2;
}

.celebration-layout .gallery-row:first-child .gallery-item:last-child {
  flex: 1;
}

.celebration-layout .gallery-row:last-child {
  height: 250px;
}

.celebration-layout .gallery-row:last-child .gallery-item {
  flex: 1;
}

/* Layout spécifique pour Activité Sportive */
.sportive-layout .gallery-row:first-child {
  height: 250px;
}

.sportive-layout .gallery-row:first-child .gallery-item {
  flex: 1;
}

.sportive-layout .gallery-row:last-child {
  height: 400px;
}

.sportive-layout .gallery-row:last-child .gallery-item:first-child {
  flex: 1;
}

.sportive-layout .gallery-row:last-child .gallery-item:last-child {
  flex: 2;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-page-mediatech h1 {
      font-size: 2.5rem;
  }
  
  .hero-page-mediatech p {
      font-size: 1.2rem;
  }
  
  .section-title h2 {
      font-size: 2rem;
  }
  
  .section-title span {
      font-size: 2.5rem;
  }
  
  .celebration-layout .gallery-row:first-child,
  .sportive-layout .gallery-row:last-child {
      height: 300px;
  }
}

@media (max-width: 768px) {
  .mediatech-tabs {
      gap: 5px;
  }
  
  .tab-button {
      padding: 10px 15px;
      font-size: 0.9rem;
  }
  
  .gallery-row {
      flex-direction: column;
      height: auto !important;
  }
  
  .celebration-layout .gallery-row:first-child .gallery-item,
  .celebration-layout .gallery-row:last-child .gallery-item,
  .sportive-layout .gallery-row:first-child .gallery-item,
  .sportive-layout .gallery-row:last-child .gallery-item {
      height: 250px;
      margin-bottom: 15px;
  }
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.intermediaire {
  padding: 50px 0;
  position: relative;
  clip-path: inset(0);
  min-height: 30vh;
  display: flex;
  align-items: center;
}

.intermediaire img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.intermediaire:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.intermediaire .container {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.intermediaire p {
  color: white;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

/* Pour les écrans plus petits */
@media (max-width: 768px) {
  .intermediaire {
      padding: 120px 0 40px 0;
  }
  
  .intermediaire p {
      font-size: 1.5rem;
      text-align: left;
  }
  
  .intermediaire .container {
      padding: 0 15px;
  }
}
