/*
Theme Name: AGCreative Child
Template: hello-elementor
Version: 1.0
*/

/* ======================================================
   CUSTOM CSS
   ====================================================== */

#header {
	max-height: 70px !important;
	height: 100%;
}
/***** TITLE *****/
.title_gradient {
	background: -webkit-linear-gradient(0deg,rgba(254, 154, 0, 1) 0%, rgba(255, 137, 4, 1) 50%, rgba(0, 211, 243, 1) 100%);
	background-clip: text;
   -webkit-text-fill-color: transparent;
}

.title_gradient_2 {
	background: -webkit-linear-gradient(-90deg,rgba(180, 77, 0, 1) 0%, rgba(245, 73, 0, 1) 50%, rgba(0, 146, 184, 1) 100%);
	background-clip: text;
   -webkit-text-fill-color: transparent;
}

.title_gradient_3 {
	background: -webkit-linear-gradient(0deg,rgba(152, 16, 250, 1) 0%, rgba(230, 0, 118, 1) 100%);
	background-clip: text;
   -webkit-text-fill-color: transparent;
}

.title_blue_gradient {
	background: -webkit-linear-gradient(90deg,rgba(0, 146, 184, 1) 0%, rgba(21, 93, 252, 1) 50%, rgba(0, 146, 184, 1) 100%);
	background-clip: text;
   -webkit-text-fill-color: transparent;
}

.title_amber_gradient {
	background: -webkit-linear-gradient(90deg,rgba(187, 77, 0, 1) 0%, rgba(245, 73, 0, 1) 50%, rgba(187, 77, 0, 1) 100%);
	background-clip: text;
   -webkit-text-fill-color: transparent;
}

.title_amber {
 color: #973c00;
}

.title_blue {
	color: #007595;
}

.title_green {
 color: #008236;
}


/****** BLOC ******/

.block_after, .block_after_last {
	position: relative;
		min-height: 274px !important;
		max-height: 274px !important;
		height: 100%;
}
.block_after::after {
	position: absolute;
	content: "";
	height: 2px;
	width: 25px;
	background-color: rgba(151, 60, 0, 0.3);
	top: 50%;
	left: 95%;
}

.block_rejoignez, .block_rejoignez_last {
	position: relative;
}
.block_rejoignez::after {
	position: absolute;
	content: url("https://stratkeys.agcreative.fr/wp-content/uploads/2026/03/arrow_right_orange.svg");
	top: 50%;
	left: 97%;
}
@media (max-width: 768px) {
  .block_rejoignez::after {
	  display: none;
  }
  .block_after::after {
	  display: none;
  }
}
/* =========================
   NAV DESKTOP STRATKEYS
========================= */

.stratkeys-nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .stratkeys-nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem; /* 32px */
  }
}

/* Liens */
.stratkeys-nav-desktop a {
  position: relative;
  display: inline-block;
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  color: #4a5565;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover texte */
.stratkeys-nav-desktop a:hover {
  color: #9810fa;
}

/* Underline animée */
.stratkeys-nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #9810fa, #e60076);
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Hover underline */
.stratkeys-nav-desktop a:hover::after {
  transform: scaleX(1);
}

.stratkeys-nav-desktop .current-menu-item > a,
.stratkeys-nav-desktop .current_page_item > a {
  color: #9810fa;
}

.stratkeys-nav-desktop .current-menu-item > a::after,
.stratkeys-nav-desktop .current_page_item > a::after {
  transform: scaleX(1);
}

/* ======================================================
   MODULE RECRUES
====================================================== */

.ag-recrues-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ag-recrues-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: ag-recrues-scroll 25s linear infinite;
}

.ag-recrues-carousel:hover .ag-recrues-track {
  animation-play-state: paused;
}

@keyframes ag-recrues-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 12px));
  }
}

.carte-recrue {
  flex-shrink: 0;
  width: 14rem;
  background-color: white;
  border-radius: 1rem;
  border: 2px solid rgb(187, 247, 208);
  overflow: hidden;
  transition: all 0.3s ease;
}

.carte-recrue:hover {
  border-color: rgb(74, 222, 128);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
              0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.carte-recrue-image-wrap {
  position: relative;
}

.carte-recrue img,
.carte-recrue-placeholder {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  background: #f3f4f6;
}

.carte-recrue:hover img {
  transform: scale(1.05);
}

.badge-nouveau {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: rgb(22, 163, 74);
  color: white;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.carte-contenu {
  padding: 1rem;
}

.carte-nom {
  font-weight: 500;
  color: rgb(15, 23, 42);
  margin: 0 0 0.25rem;
}

.carte-expertise {
  font-size: 0.875rem;
  color: rgb(71, 85, 105);
  font-weight: 300;
  margin: 0 0 0.5rem;
}

.badge-date {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: rgb(240, 253, 244);
  border-radius: 9999px;
}

.badge-date-point {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: rgb(22, 163, 74);
}

.badge-date-texte {
  font-size: 0.75rem;
  color: rgb(22, 101, 52);
  font-weight: 300;
}

@media (max-width: 767px) {
  .carte-recrue {
    width: 12.5rem;
  }

  .carte-recrue img,
  .carte-recrue-placeholder {
    height: 12.5rem;
  }

  .ag-recrues-track {
    gap: 20px;
    animation-duration: 18s;
  }
}

/* ======================================================
   MODULE EXPERTS PAR SECTEUR
====================================================== */

.ag-experts-secteurs {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ag-secteur-item {
  border: 2px solid rgb(226, 232, 240);
  border-radius: 1rem;
  overflow: hidden;
  background-color: white;
  transition: all 0.3s ease;
}

.ag-secteur-item:hover {
  border-color: rgb(253, 186, 116);
}

.ag-secteur-header {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, rgb(248, 250, 252), white);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: left;
}

.ag-secteur-header:hover {
  background: linear-gradient(to right, rgb(241, 245, 249), rgb(248, 250, 252));
}

.ag-secteur-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.ag-secteur-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.ag-secteur-textes {
  text-align: left;
  min-width: 0;
}

.ag-secteur-title {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgb(15, 23, 42);
  margin: 0;
  line-height: 1.2;
}

.ag-secteur-description {
  font-size: 0.875rem;
  color: rgb(71, 85, 105);
  font-weight: 300;
  margin: 0.25rem 0 0;
  line-height: 1.5;
}

.ag-secteur-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.ag-secteur-count {
  padding: 0.5rem 1rem;
  background-color: white;
  border-radius: 9999px;
  border: 1px solid rgb(226, 232, 240);
  font-size: 0.875rem;
  color: rgb(51, 65, 85);
  font-weight: 300;
  white-space: nowrap;
}

.ag-secteur-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgb(148, 163, 184);
  border-bottom: 2px solid rgb(148, 163, 184);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -4px;
}

.ag-secteur-item.is-open .ag-secteur-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.ag-secteur-content {
  display: none;
  padding: 1.5rem;
  background-color: rgb(248, 250, 252);
  border-top: 1px solid rgb(226, 232, 240);
}

/* ======================================================
   CARDS EXPERTS
====================================================== */

.ag-experts-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ag-experts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ag-experts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ag-expert-card {
  padding: 1rem;
  background-color: white;
  border-radius: 0.75rem;
  border: 1px solid rgb(226, 232, 240);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .ag-expert-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

.ag-expert-card:hover {
  border-color: rgb(251, 146, 60);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
              0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* MOBILE */

.ag-expert-card-mobile {
  display: block;
}

@media (min-width: 768px) {
  .ag-expert-card-mobile {
    display: none;
  }
}

.ag-expert-mobile-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.ag-expert-photo-container-mobile {
  position: relative;
  flex-shrink: 0;
}

.ag-expert-photo-mobile,
.ag-expert-photo-placeholder-mobile {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
              0 4px 6px -4px rgb(0 0 0 / 0.1);
  background: #e5e7eb;
  display: block;
}

.ag-expert-award-badge-mobile {
  position: absolute;
  bottom: -0.25rem;
  right: -0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  color: white;
  font-size: 10px;
}

.ag-expert-info-mobile {
  flex: 1;
  min-width: 0;
}

.ag-expert-name-mobile {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(15, 23, 42);
  margin: 0 0 0.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ag-expert-title-mobile {
  font-size: 0.75rem;
  color: rgb(71, 85, 105);
  font-weight: 300;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ag-expertise-badge-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: rgba(241, 245, 249, 0.9);
}

.ag-expertise-dot-mobile {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: rgb(37, 99, 235);
}

.ag-expertise-text-mobile {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgb(51, 65, 85);
}

.ag-achievement-row-mobile {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

.ag-trending-icon-mobile {
  width: 0.75rem;
  height: 0.75rem;
  color: rgb(234, 88, 12);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.ag-achievement-text-mobile {
  font-size: 0.75rem;
  color: rgb(71, 85, 105);
  font-weight: 300;
  line-height: 1.625;
}

.ag-linkedin-button-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 300;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ag-linkedin-button-mobile:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
              0 4px 6px -4px rgb(0 0 0 / 0.1);
  color: white;
}

.ag-linkedin-icon-mobile {
  width: 14px;
  height: 14px;
}

/* DESKTOP */

.ag-expert-card-desktop {
  display: none;
}

@media (min-width: 768px) {
  .ag-expert-card-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
  }
}

.ag-expert-header-desktop {
  margin-bottom: 1rem;
}

.ag-expert-photo-container-desktop {
  position: relative;
  margin-bottom: 1rem;
}

.ag-expert-photo-desktop,
.ag-expert-photo-placeholder-desktop {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
              0 4px 6px -4px rgb(0 0 0 / 0.1);
  background: #e5e7eb;
  display: block;
  transition: transform 0.3s ease;
}

.ag-expert-card:hover .ag-expert-photo-desktop {
  transform: scale(1.05);
}

.ag-expert-award-badge-desktop {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  color: white;
  font-size: 14px;
}

.ag-expert-name-desktop {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgb(15, 23, 42);
  margin: 0 0 0.25rem;
}

.ag-expert-title-desktop {
  font-size: 0.75rem;
  color: rgb(71, 85, 105);
  font-weight: 300;
  margin: 0 0 0.75rem;
}

.ag-expert-info-section-desktop {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  width: 100%;
}

.ag-info-row-desktop {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}

.ag-expertise-dot-desktop {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  margin-top: 0.375rem;
  flex-shrink: 0;
  background: rgb(37, 99, 235);
}

.ag-trending-icon-desktop {
  width: 0.75rem;
  height: 0.75rem;
  color: rgb(234, 88, 12);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.ag-info-label-desktop {
  font-size: 0.75rem;
  color: rgb(100, 116, 139);
  font-weight: 300;
  display: block;
}

.ag-info-value-desktop {
  font-size: 0.875rem;
  color: rgb(15, 23, 42);
  font-weight: 300;
  display: block;
}

.ag-linkedin-button-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 300;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.ag-linkedin-button-desktop:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
              0 4px 6px -4px rgb(0 0 0 / 0.1);
  color: white;
}

.ag-linkedin-icon-desktop {
  width: 14px;
  height: 14px;
}

/* GRADIENTS */

.gradient-cyan-blue {
  background: linear-gradient(to bottom right, rgb(6, 182, 212), rgb(37, 99, 235));
}

.gradient-orange-amber {
  background: linear-gradient(to bottom right, rgb(249, 115, 22), rgb(217, 119, 6));
}

.gradient-amber-orange {
  background: linear-gradient(to bottom right, rgb(217, 119, 6), rgb(234, 88, 12));
}

.gradient-blue-cyan {
  background: linear-gradient(to bottom right, rgb(37, 99, 235), rgb(8, 145, 178));
}

.gradient-cyan-blue-alt {
  background: linear-gradient(to bottom right, rgb(8, 145, 178), rgb(37, 99, 235));
}

.gradient-orange-amber-alt {
  background: linear-gradient(to bottom right, rgb(234, 88, 12), rgb(217, 119, 6));
}

@media (max-width: 767px) {
  .ag-secteur-header {
    padding: 1rem;
    align-items: flex-start;
    gap: 1rem;
  }

  .ag-secteur-header-left {
    align-items: flex-start;
  }

  .ag-secteur-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .ag-secteur-title {
    font-size: 1.05rem;
  }

  .ag-secteur-description {
    font-size: 0.8125rem;
  }

  .ag-secteur-header-right {
    gap: 0.75rem;
  }

  .ag-secteur-count {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .ag-secteur-content {
    padding: 1rem;
  }
}