a {
  color: var(--primary-color);
  transition: 0.2s;
}
a:not(.button, .cta-button):hover {
  color: var(--accent-pink);
}

.m-top {
  margin-top: 2rem;
}
.m-bot {
  margin-bottom: 2rem;
}

.d-flex {
  display: flex;
}

.grid1x5 {
  grid-column: 1 / 5;
}

.fakeh2, div p.fakeh2 {
  display: block;
  font-size: var(--h2-font-size);
  font-family: var(--logo-font);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}
.fakeh3, div p.fakeh3 {
  display: block;
  font-size: var(--h3-font-size);
  font-family: var(--logo-font);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 1rem;
}

/* Variables pour les nouvelles polices */
:root {
  --logo-font: 'Nunito', sans-serif;
  --signature-font: 'Dancing Script', cursive;
}

/* Classe pour le style "ATELIERS" */
.logo-style {
  font-family: var(--logo-font);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Classe pour le style "Créa'Titia" */
.signature-style {
  font-family: var(--signature-font);
  font-weight: 500;
  font-style: normal;
}

/* Application sur les éléments du site */
.hero-title,
.section-title,
h1, h2, h3 {
  font-family: var(--logo-font);
  font-weight: 600;
}

.hero-subtitle,
.about-subtitle {
  font-family: var(--signature-font);
  font-weight: 500;
  font-size: 1.2em;
}

/* =============== PARTICULIERS SECTION =============== */
.particuliers {
  background-color: var(--body-color);
}

.particuliers-container {
  display: grid;
  gap: 3rem;
}

.particuliers-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: flex-start;
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
}

.particuliers-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.particuliers-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 33% 67% 27% 73% / 60% 30% 70% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.particuliers-icon i {
  font-size: 3.5rem;
  color: var(--white-color);
}

.particuliers-container .particuliers-item:nth-child(2) .particuliers-icon {
  background: var(--accent-pink);
  border-radius: 74% 26% 79% 21% / 34% 51% 49% 66%;
}

.particuliers-title {
  font-size: var(--h3-font-size);
  margin-bottom: 1.5rem;
}

.particuliers-list {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.particuliers-list li {
  margin-bottom: 0.75rem;
}

.sub-list {
  margin-top: 0.5rem;
  margin-left: 1.5rem;
  list-style: disc;
}

.sub-list li {
  margin-bottom: 0.5rem;
  font-size: var(--small-font-size);
}

.cta-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

/* =============== PROFESSIONNELS SECTION =============== */
.professionnels {
  background-color: var(--container-color);
}

.professionnels-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.pro-card {
  background-color: var(--body-color);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-yellow));
}

.pro-card:hover {
  background-color: var(--container-color);
  box-shadow: 0 4px 20px var(--shadow-color);
  transform: translateY(-5px);
}

.pro-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-pink);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pro-icon i {
  font-size: 1.5rem;
  color: var(--white-color);
}

.pro-title {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.pro-list {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.pro-list li {
  margin-bottom: 0.75rem;
}

/* =============== RESUME SECTION =============== */
.resume {
  background-color: var(--body-color);
}

.resume-table {
  overflow-x: auto;
}

.target-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--container-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-color);
}

.target-table th {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 1.5rem;
  text-align: left;
  font-weight: var(--font-semi-bold);
}

.target-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  vertical-align: top;
}

.target-table tr:last-child td {
  border-bottom: none;
}

.target-table tr:nth-child(even) {
  background-color: var(--body-color);
}

.target-table tr:hover {
  background-color: rgba(0, 74, 173, 0.05);
}

.table-responsive {
  overflow-x: auto;
  padding: 1rem;
}

/* =============== RESPONSIVE DESIGN FOR PUBLIC CIBLE =============== */
@media screen and (max-width: 968px) {
  .particuliers-item,
  .pro-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .particuliers-icon,
  .pro-icon {
    margin: 0 auto;
  }

  .cta-buttons-grid {
    grid-template-columns: 1fr;
  }

  .target-table {
    font-size: var(--small-font-size);
  }

  .target-table th,
  .target-table td {
    padding: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .target-table th,
  .target-table td {
    padding: 0.75rem;
    font-size: var(--smaller-font-size);
  }

  .table-responsive {
    padding: 1.5rem;
  }
}
  /* =============== GOOGLE FONTS =============== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =============== VARIABLES CSS =============== */
:root {
  --header-height: 3.5rem;

  /* ========== Colors ========== */
  --primary-color: #004AAD;
  --primary-light: #66C7F1;
  --accent-yellow: #FAC93F;
  --accent-pink: #F36798;
  --white-color: #FFFFFF;
  --text-color: #333333;
  --text-light: #666666;
  --body-color: #FAFAFA;
  --container-color: #FFFFFF;
  --border-color: #E5E5E5;
  --shadow-color: rgba(0, 74, 173, 0.1);

  /* ========== Font and typography ========== */
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 2rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  /* ========== Font weight ========== */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* ========== z index ========== */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1.125rem;
    --small-font-size: 1rem;
    --smaller-font-size: 0.875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============== REUSABLE CSS CLASSES =============== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container.full-container {
  max-width: 1800px;
}

.section {
  padding-block: 5rem 3rem;
}

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

.section-title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.button:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-color);
}

.button-outline {
  background-color: #ffffff75;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button-outline:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* =============== HEADER & NAV =============== */
.header {
  position: fixed;
  width: 100%;
  background-color: var(--white-color);
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  box-shadow: 0 2px 16px var(--shadow-color);
  transition: all 0.3s ease;
}

.nav {
  /*height: var(--header-height);*/
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: auto;
  height: 100px;
}

/* =============== DROPDOWN MENU =============== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-toggle i {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 4px 20px var(--shadow-color);
  border-radius: 10px;
  padding: 0.5rem 0;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: var(--z-tooltip);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
  font-weight: var(--font-regular);
  transition: all 0.3s ease;
  border-radius: 0;
}

.nav-dropdown-link:hover {
  background-color: var(--body-color);
  color: var(--primary-color);
  padding-left: 2rem;
}

/* Desktop menu - two lines */
@media screen and (min-width: 769px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0.5rem;
  }

  .nav-list-primary,
  .nav-list-secondary {
    margin: 0;
  }
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-list-primary {
  margin-bottom: 0;
  opacity: 0.75;
}

.nav-list-secondary {
  margin-top: 0;
  font-size: 1.1em;
}

.nav-link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link.active-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.nav-toggle,
.nav-close {
  display: none;
  font-size: 1.25rem;
  color: var(--text-color);
  cursor: pointer;
}

/* =============== HERO =============== */
.hero {
  padding-top: calc(var(--header-height) + 2rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  background-image: url("img/bg2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /*animation: bgmove 60s linear infinite;*/
}
/*
@keyframes bgmove {
  0%   {background-position: 0 0;}
  50%  {background-position: 50% 50%;}
  100% {background-position: 100% 100%;}
}
*/

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-subtitle {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--accent-pink);
  font-weight: var(--font-medium);
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgba(243, 103, 152, 0.1);
  border-radius: 75px;
}

.subtitle {
  font-size: 0.8em;
  color: var(--primary-color);
}
h3 .subtitle {
  font-size: 0.95em;
}

.hero-title {
  font-size: var(--biggest-font-size);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hero-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-img {
  position: relative;
}

.hero-img-bg {
  position: relative;
  background: var(--primary-light);
  border-radius: 20px;
  padding: 1rem;
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.hero-img-bg:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image {
  border-radius: 15px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* =============== SERVICES =============== */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.services-container.services-center {
  text-align: center;
}

.service-card {
  background: var(--container-color);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-yellow), var(--accent-pink));
}

.service-card:first-child::before {
  background:var(--primary-color);
}
.service-card:nth-child(2)::before {
  background:var(--accent-yellow);
}
.service-card:nth-child(3)::before {
  background:var(--accent-pink);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.service-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.service-card:nth-child(1) .service-icon {
  background:var(--primary-color);
  border-radius: 33% 67% 27% 73% / 60% 30% 70% 40%;
}
.service-card:nth-child(2) .service-icon {
  background:var(--accent-yellow);
  border-radius: 50% 50% 56% 44% / 34% 32% 68% 66%;
}
.service-card:nth-child(3) .service-icon {
  background:var(--accent-pink);
  border-radius: 74% 26% 79% 21% / 34% 51% 49% 66%;
}

.service-icon i {
  font-size: 4.5rem;
  color: var(--white-color);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
}

.service-card:hover .service-icon i {
  color: var(--white-color);
}

.service-card:nth-child(1):hover {
  background-color: rgba(0, 74, 173, 0.1);
}
.service-card:nth-child(1):hover .service-icon {
  background-color: var(--white-color);
}
.service-card:nth-child(1):hover .service-icon i {
  color: var(--primary-color);
}
.service-card:nth-child(1) .cta-button {
  background-color: var(--primary-color);
  color: var(--white-color);;
}
.service-card:nth-child(1) .cta-button:hover {
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.1);
}
.service-card:nth-child(2):hover {
  background-color: rgba(173, 130, 0, 0.1);
}
.service-card:nth-child(2):hover .service-icon {
  background-color: var(--white-color);
}
.service-card:nth-child(2):hover .service-icon i {
  color: var(--accent-yellow);
}
.service-card:nth-child(2) .cta-button {
  background-color: var(--accent-yellow);
  color: var(--text-color);
}
.service-card:nth-child(2) .cta-button:hover {
  box-shadow: 0 4px 12px rgba(173, 130, 0, 0.1);
}
.service-card:nth-child(3):hover {
  background-color: rgba(243, 103, 152, 0.1);
}
.service-card:nth-child(3):hover .service-icon {
  background-color: var(--white-color);
}
.service-card:nth-child(3):hover .service-icon i {
  color: var(--accent-pink);
}
.service-card:nth-child(3) .cta-button {
  background-color: var(--accent-pink);
  color: var(--white-color);
}
.service-card:nth-child(3) .cta-button:hover {
  box-shadow: 0 4px 12px rgba(243, 103, 152, 0.3);
}

.service-title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: var(--primary-color);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--accent-pink);
  gap: 0.5rem;
}

/* =============== ABOUT =============== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-image {
  border-radius: 20px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 8px 24px var(--shadow-color);
}

.about-image.full {
  height: auto !important;
}

.about-subtitle {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--primary-color);
  font-weight: var(--font-medium);
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 74, 173, 0.1);
  border-radius: 75px;
}

.about-title {
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
}

.about-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-features {
  margin-bottom: 2rem;
}
.about-features.min-about-features {
  margin-bottom: 1.5rem;
}

.about-features .button {
  margin:auto;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.min-about-features .about-feature{
  margin-bottom: 0.5rem;
}

.about-feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: rgba(0, 74, 173, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 2px #fff,0 0 5px #fff,0 0 10px #fff;
}

.about-feature:nth-child(1) i, .about-feature:nth-child(4) i, .about-feature:nth-child(7) i {
  border-radius: 33% 67% 27% 73% / 60% 30% 70% 40%;
  color: var(--primary-color);
  background-color: rgba(0, 74, 173, 0.1);
}
.about-feature:nth-child(2) i, .about-feature:nth-child(5) i, .about-feature:nth-child(8) i {
  border-radius: 42% 58% 45% 55% / 41% 68% 32% 59%;
  color: var(--accent-yellow);
  background-color: rgba(173, 130, 0, 0.1);
}
.about-feature:nth-child(3) i, .about-feature:nth-child(6) i, .about-feature:nth-child(9) i {
  border-radius: 74% 26% 79% 21% / 34% 51% 49% 66%;
  color: var(--accent-pink);
  background-color: rgba(243, 103, 152, 0.1);
}

.about-feature h4 {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: var(--small-font-size);
  color: var(--text-light);
}

/* =============== VALUES =============== */
.values {
  background-color: var(--container-color);
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.values-container.twoxtwo {
  grid-template-columns: 1fr 1fr;
}

.values-container.treextree {
  grid-template-columns: 1fr 1fr 1fr;
}

.value-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card:nth-child(1), .value-card:nth-child(5), .value-card:nth-child(9) {
  background-color: rgba(0, 74, 173, 0.1);
}
.value-card:nth-child(2), .value-card:nth-child(6), .value-card:nth-child(10) {
  background-color: rgba(173, 130, 0, 0.1);
}
.value-card:nth-child(3), .value-card:nth-child(7), .value-card:nth-child(11) {
  background-color: rgba(243, 103, 152, 0.1);
}
.value-card:nth-child(4), .value-card:nth-child(8), .value-card:nth-child(12) {
  background-color: rgba(102, 199, 241, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-card:nth-child(1) .value-icon, .value-card:nth-child(5) .value-icon, .value-card:nth-child(9) .value-icon {
  background: var(--primary-color);
  border-radius: 33% 67% 27% 73% / 60% 30% 70% 40%;
}
.value-card:nth-child(2) .value-icon, .value-card:nth-child(6) .value-icon, .value-card:nth-child(10) .value-icon {
  background: var(--accent-yellow);
  border-radius: 42% 58% 45% 55% / 41% 68% 32% 59%;
}
.value-card:nth-child(3) .value-icon, .value-card:nth-child(7) .value-icon, .value-card:nth-child(11) .value-icon {
  background-color: var(--accent-pink);
  border-radius: 74% 26% 79% 21% / 34% 51% 49% 66%;
}
.value-card:nth-child(4) .value-icon, .value-card:nth-child(8) .value-icon, .value-card:nth-child(12) .value-icon {
  background-color: var(--primary-light);
  border-radius: 50% 50% 56% 44% / 34% 32% 68% 66%;
}

.value-icon i {
  font-size: 3.5rem;
  color: var(--white-color);
}

.value-card:hover .value-icon i {
  color: var(--white-color);
}

.value-title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.value-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* =============== TESTIMONIALS =============== */
.testimonials {
  background-color: var(--body-color);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: var(--accent-yellow);
  font-size: 1.125rem;
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  font-size: var(--small-font-size);
  color: var(--text-light);
}

/* =============== CTA =============== */
.cta {
  background-color: var(--primary-color);
  color: var(--white-color);
  background-image: url("img/bg1.png");
  background-repeat: no-repeat;
  background-position: center;
}

.cta-container {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 20px;
}

.cta-title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.cta-description {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta .button {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.cta .button:hover {
  background-color: var(--accent-yellow);
  color: var(--text-color);
}

.cta .button-outline {
  background-color: #ffffff2e;
  color: var(--white-color);
  border-color: var(--white-color);
}

.cta .button-outline:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

/* =============== FOOTER =============== */
.footer {
  background-color: var(--white-color);
  color: var(--text-light);
  padding-top: 3rem;
}

.footer-container {
  padding-bottom: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-logo-img {
  width: auto;
  height: 100px;
}

.footer-logo h3 {
  color: var(--primary-color);
  font-size: var(--h3-font-size);
}

.footer-description {
  color: color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

div .footer-social-link {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social-link:nth-child(1) {
  border-radius: 74% 26% 79% 21% / 34% 51% 49% 66%;
}
.footer-social-link:nth-child(2) {
  border-radius: 50% 50% 56% 44% / 34% 32% 68% 66%;
}

div .footer-social-link i {
  color: color: var(--white-color);
}

.footer-social-link:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

div .footer-social-link:hover i {
  color: color: var(--primary-color);
}

.footer-title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: color: var(--text-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
}

.footer-contact i {
  color: var(--primary-light);
}

.footer-contact a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

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

.footer-copy {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
}

/* =============== FAQ =============== */
.faq {
  background-color: var(--container-color);
}

.faq-container {
  margin: 0 auto;
}

.faq-item {
  background-color: var(--body-color);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px var(--shadow-color);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background-color: rgba(102, 199, 241, 0.1);
  border: none;
  text-align: left;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(0, 74, 173, 0.2);
}

.faq-question i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--container-color);
}

.faq-answer-content {
  padding: 1.5rem 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* =============== CTA BUTTONS =============== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-pink);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--accent-yellow);
  color: var(--text-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 103, 152, 0.3);
}

.cta-button i {
  font-size: 1rem;
}
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--primary-color);
  color: var(--white-color);
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-tooltip);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-color);
}

.scrollup:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

/* Show scroll */
.show-scroll {
  bottom: 3rem;
}

/* =============== BREAKPOINTS =============== */
/* For large devices */
@media screen and (max-width: 1200px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* For medium devices */
@media screen and (max-width: 968px) {
  .hero-container,
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-img {
    order: -1;
  }

  .hero-buttons {
    justify-content: center;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Qui suis-je page responsive */
  .artistic-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .experience-icon {
    margin: 0 auto;
  }

  .achievement-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .achievement-year {
    justify-self: center;
    width: fit-content;
    margin: 0 auto;
  }

  .future-container {
    grid-template-columns: 1fr;
  }

  .future-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .journey-step,
  .journey-step.reverse {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .journey-step.reverse .step-content {
    text-align: center;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-content {
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    margin-left: 60px;
  }

  .timeline-item.reverse .timeline-content {
    grid-template-columns: auto 1fr;
  }

  .timeline-date {
    text-align: left;
    padding: 0;
    grid-column: 2;
    order: 1;
  }

  .timeline-item.reverse .timeline-date {
    text-align: left;
    padding: 0;
    grid-column: 2;
    order: 1;
  }

  .timeline-card {
    grid-column: 2;
    order: 2;
  }

  .timeline-item.reverse .timeline-card {
    grid-column: 2;
    order: 2;
  }

  .timeline-card::before {
    left: -20px;
    right: auto;
    border-left-color: transparent;
    border-right-color: var(--container-color);
  }

  .timeline-item.reverse .timeline-card::before {
    left: -20px;
    border-left-color: transparent;
    border-right-color: var(--container-color);
  }

  /* Valeurs page responsive */
  .piliers-container {
    grid-template-columns: 1fr;
  }

  .main-card {
    grid-row: span 1;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-desc-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-detailed-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  /* Public cible page responsive */
  .particuliers-item,
  .pro-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .particuliers-icon,
  .pro-icon {
    margin: 0 auto;
  }

  .cta-buttons-grid {
    grid-template-columns: 1fr;
  }

  .target-table {
    font-size: var(--small-font-size);
  }

  .target-table th,
  .target-table td {
    padding: 1rem;
  }
}

/* For small devices */
@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: var(--header-height);
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white-color);
    transition: left 0.3s ease;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 16px var(--shadow-color);
    overflow-y: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .nav-list-primary {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-list-secondary {
    margin-top: 0;
  }

  .nav-link {
    font-size: var(--normal-font-size);
    text-align: center;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
  }

  .nav-link:hover {
    background-color: var(--body-color);
  }

  /* Mobile dropdown */
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: var(--body-color);
    margin-top: 0.5rem;
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    max-height: 200px;
  }

  .nav-dropdown.active .nav-dropdown-toggle i {
    transform: rotate(180deg);
  }

  .nav-dropdown-link {
    text-align: left;
    padding: 0.5rem 1rem;
    font-size: var(--small-font-size);
  }

  .nav-dropdown-link:hover {
    background-color: var(--white-color);
    padding-left: 1.5rem;
  }

  .nav-toggle,
  .nav-close {
    display: block;
  }

  .nav-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }

  .show-menu {
    left: 0;
  }

  .services-container,
  .values-container, .values-container.twoxtwo {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Qui suis-je responsive mobile */
  .timeline-content {
    margin-left: 40px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-card {
    padding: 1.5rem;
  }

  .year {
    font-size: var(--h3-font-size);
  }

  .experience-item {
    padding: 1.5rem;
  }

  .experience-icon,
  .future-icon {
    margin: 0 auto;
  }

  .artistic-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Valeurs page mobile */
  .pilier-card,
  .service-desc-card {
    padding: 1.5rem;
  }

  .values-detailed-grid {
    grid-template-columns: 1fr;
  }

  .value-detailed-card {
    padding: 1.5rem;
  }

  .pilier-icon,
  .value-icon-large {
    margin-left: auto;
    margin-right: auto;
  }

  /* Public cible mobile */
  .target-table th,
  .target-table td {
    padding: 0.75rem;
    font-size: var(--smaller-font-size);
  }

  .table-responsive {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .section {
    padding-block: 4rem 2rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 1rem);
  }

  .hero-title {
    font-size: var(--h1-font-size);
  }

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

  .cta-container {
    padding: 2rem 1rem;
  }

  /* Styles supplémentaires pour très petits écrans */
  .experience-item,
  .pilier-card,
  .value-detailed-card,
  .service-desc-card,
  .particuliers-item,
  .pro-card {
    padding: 1rem;
  }

  .timeline-card {
    padding: 1rem;
  }

  .achievement-card {
    padding: 1rem;
  }

  .future-item {
    padding: 1rem;
  }
}


/* =============== SERVICES OVERVIEW SECTION =============== */
.services-overview {
  background-color: var(--body-color);
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.services-overview-grid.fourxfour {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.service-overview-card {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-color);
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}
.service-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
}
.service-overview-card:nth-child(1)::before {
  background: var(--primary-color);
}
.service-overview-card:nth-child(2)::before {
  background: var(--accent-yellow);
}
.service-overview-card:nth-child(3)::before {
  background: var(--accent-pink);
}
.service-overview-card:nth-child(4)::before {
  background: var(--primary-light);
}

.service-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.service-overview-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-overview-card:nth-child(1) .service-overview-icon {
  background: var(--primary-color);
  border-radius: 33% 67% 27% 73% / 60% 30% 70% 40%;
}
.service-overview-card:nth-child(2) .service-overview-icon {
  background: var(--accent-yellow);
  border-radius: 42% 58% 45% 55% / 41% 68% 32% 59%;
}
.service-overview-card:nth-child(3) .service-overview-icon {
  background-color: var(--accent-pink);
  border-radius: 74% 26% 79% 21% / 34% 51% 49% 66%;
}
.service-overview-card:nth-child(4) .service-overview-icon {
  background-color: var(--primary-light);
  border-radius: 50% 50% 56% 44% / 34% 32% 68% 66%;
}

.service-overview-icon i {
  font-size: 3.5rem;
  color: var(--white-color);
}

.service-overview-title {
  font-size: var(--h3-font-size);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.service-overview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
}

.service-overview-link:hover {
  color: var(--primary-color);
  gap: 0.75rem;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =============== MODALITES SECTION =============== */
.modalites {
  background-color: var(--container-color);
  }

/* =============== ACCESS CULTURE SECTION =============== */
.access-culture {
  background-color: var(--body-color);
}

.access-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.access-title {
  font-size: var(--h2-font-size);
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.access-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.access-text strong {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
}

.access-image {
  position: relative;
}

.access-img {
  border-radius: 20px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 8px 30px var(--shadow-color);
}

.access-goals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.goal-card {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
  text-align: center;
}

.goal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.goal-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-yellow);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.goal-icon i {
  font-size: 1.8rem;
  color: var(--text-color);
}

.goal-title {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.goal-description {
  color: var(--text-light);
  line-height: 1.7;
}

.access-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============== COMMON OBJECTIVES SECTION =============== */
.common-objectives {
  background-color: var(--container-color);
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.objective-card {
  background-color: var(--body-color);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.objective-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-yellow));
}

.objective-card:hover {
  background-color: var(--container-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.objective-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.objective-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.objective-title {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.objective-description {
  color: var(--text-light);
  line-height: 1.7;
}

/* =============== PARTICULIERS SECTION =============== */
.particuliers {
  background-color: var(--body-color);
}

.particuliers-container {
  display: grid;
  gap: 3rem;
}

.particuliers-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: flex-start;
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
}

.particuliers-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.particuliers-title {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.particuliers-list {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.particuliers-list li {
  margin-bottom: 0.75rem;
}

.cta-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}


/* =============== FORM SECTION =============== */
.section.form-text-section{
  padding-bottom: 0;
}
.form-text {
  text-align: center;
}

.about-container.contact-container {
  align-items: start;
}

.contact-info {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-color);
}
.contact-info .contact-list {
  display: grid;
  align-items: center;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon i{
  font-size: 1.5rem;
  color: var(--white-color);
}
.contact-item:nth-child(1) .contact-icon {
  background-color: var(--primary-light);
  border-radius: 33% 67% 27% 73% / 60% 30% 70% 40%;
}
.contact-item:nth-child(2) .contact-icon {
  background: var(--accent-yellow);
  border-radius: 50% 50% 56% 44% / 34% 32% 68% 66%;
}
.contact-item:nth-child(3) .contact-icon {
  background: var(--accent-pink);
  border-radius: 74% 26% 79% 21% / 34% 51% 49% 66%;
}
.contact-rs {
  margin-top: 1rem;
  text-align: center;
}
.contact-rs-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.contact-rs-item {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-rs-item:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}
.contact-rs-item:nth-child(1) {
  border-radius: 42% 58% 45% 55% / 41% 68% 32% 59%;
}
.contact-rs-item:nth-child(2) {
  border-radius: 33% 67% 27% 73% / 60% 30% 70% 40%;
}
.contact-rs-item i {
  color: var(--white-color);
  font-size: 1.25rem;
}

/* =============== TARIFS SECTION =============== */
.about-material {

}
