.elementor-1533 .elementor-element.elementor-element-2bd36102{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-44c7fa5e *//* ============================================================
   1ST ARABIA PRO — HEADER CSS
   Coller dans : Apparence > CSS additionnel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ── VARIABLES BRAND ── */
:root {
  --sap-blue:        #056194;
  --sap-blue-dark:   #044a72;
  --sap-blue-light:  #0590c8;
  --sap-green:       #10B981;
  --sap-green-light: #34D399;
  --sap-border:      rgba(5, 97, 148, 0.16);
  --sap-shadow:      rgba(5, 97, 148, 0.10);
}

/* ── BARRE ACCENT ANIMÉE (top) ── */
.sap-top-bar {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg,
    var(--sap-blue-dark) 0%,
    var(--sap-blue)      35%,
    var(--sap-blue-light) 60%,
    var(--sap-green)     100%);
  background-size: 200% 100%;
  animation: sapShimmer 3s linear infinite;
}
@keyframes sapShimmer {
  0%   { background-position: 0%   50%; }
  100% { background-position: 200% 50%; }
}

/* ── WRAPPER ── */
.sap-header-wrap {
  background: #ffffff;
  border-bottom: 1px solid rgba(5, 97, 148, 0.1);
  box-shadow: 0 2px 20px var(--sap-shadow);
  transition: box-shadow .4s ease;
}
.sap-header-wrap.scrolled {
  box-shadow: 0 4px 32px rgba(5, 97, 148, 0.15);
}

/* ── NAV CONTAINER ── */
.sap-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 74px;
  gap: 2rem;
  transition: height .35s ease;
}
.sap-header-wrap.scrolled .sap-nav {
  height: 62px;
}

/* ── LOGO ── */
.sap-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none !important;
}
.sap-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease, height .35s ease;
}
.sap-logo:hover img { transform: scale(1.04); }
.sap-header-wrap.scrolled .sap-logo img { height: 46px; }

/* ── LIENS DESKTOP ── */
.sap-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1;
  justify-content: center;
}
.sap-links > li {
  position: relative;
  list-style: none !important;
}
.sap-links > li > a,
.sap-links > li > .sap-has-drop {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .52rem .9rem;
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  color: var(--sap-blue) !important;
  text-decoration: none !important;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: color .22s ease, background .22s ease;
}
.sap-links > li > a:hover,
.sap-links > li > .sap-has-drop:hover,
.sap-links > li:hover > .sap-has-drop {
  color: var(--sap-blue-light) !important;
  background: rgba(5, 97, 148, 0.07);
}
.sap-links > li.sap-active > a {
  color: var(--sap-blue-light) !important;
  background: rgba(5, 97, 148, 0.07);
}

/* Chevron */
.sap-chevron {
  width: 13px; height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s ease;
}
.sap-links > li:hover .sap-chevron {
  transform: rotate(180deg);
}

/* ── DROPDOWN — HOVER CSS PUR ── */
.sap-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 218px;
  background: #ffffff;
  border: 1px solid var(--sap-border);
  border-radius: 14px;
  padding: .6rem;
  box-shadow: 0 20px 55px rgba(5, 97, 148, 0.14), 0 4px 14px rgba(0,0,0,.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 99999;
}
/* S'affiche au hover */
.sap-links > li:hover > .sap-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Triangle pointeur */
.sap-dropdown::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px; height: 13px;
  background: #fff;
  border-left: 1px solid var(--sap-border);
  border-top: 1px solid var(--sap-border);
  border-radius: 2px;
}

/* Items du dropdown */
.sap-dropdown a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .62rem .9rem;
  color: var(--sap-blue) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease, padding-left .2s ease;
}
.sap-dropdown a:hover {
  color: var(--sap-blue-light) !important;
  background: rgba(5, 97, 148, 0.07);
  padding-left: 1.15rem;
}

/* ── BADGES ANNÉES ── */
.sap-year {
  display: inline-flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  padding: 2px 8px;
  border-radius: 5px;
  color: var(--sap-green);
  background: rgba(16, 185, 129, 0.13);
}
.sap-year.y25 {
  color: var(--sap-blue);
  background: rgba(5, 97, 148, 0.11);
}
.sap-year.y26 {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
}

.sap-divider {
  height: 1px;
  background: rgba(5, 97, 148, 0.09);
  margin: .4rem 0;
}

/* ── BOUTONS CTA ── */
.sap-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}

/* Contact Us — outline #056194 */
.sap-btn-contact {
  padding: .48rem 1.2rem;
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sap-blue) !important;
  border: 2px solid var(--sap-blue);
  background: transparent !important;
  border-radius: 9px;
  text-decoration: none !important;
  transition: border-color .25s, background .25s, color .25s;
}
.sap-btn-contact:hover {
  background: var(--sap-blue) !important;
  color: #ffffff !important;
  border-color: var(--sap-blue) !important;
}
.sap-mobile-menu .sap-btn-contact:hover {
  color: #ffffff !important;
}

/* Supplier Form — dégradé brand */
.sap-btn-supplier {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .52rem 1.35rem;
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sap-green) 0%, var(--sap-blue) 100%);
  box-shadow: 0 4px 18px rgba(5, 97, 148, 0.30);
  transition: transform .2s ease, box-shadow .3s ease;
}
.sap-btn-supplier::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sap-green-light) 0%, var(--sap-blue-light) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.sap-btn-supplier:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(5, 97, 148, 0.42);
}
.sap-btn-supplier:hover::before { opacity: 1; }
.sap-btn-supplier > span,
.sap-btn-supplier > svg {
  position: relative;
  z-index: 1;
}

/* ── BURGER MOBILE ── */
.sap-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .45rem;
  border-radius: 7px;
  background: none;
  border: none;
  transition: background .2s;
}
.sap-burger:hover { background: rgba(5,97,148,.08); }
.sap-burger span {
  display: block;
  width: 23px;
  height: 2.5px;
  background: var(--sap-blue);
  border-radius: 2px;
  transition: transform .35s ease, opacity .35s ease;
}
.sap-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sap-burger.open span:nth-child(2) { opacity: 0; }
.sap-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MENU MOBILE ── */
.sap-mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid rgba(5, 97, 148, 0.1);
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease, padding .3s ease;
}
.sap-mobile-menu.open {
  max-height: 700px;
  padding: 1rem;
}

/* Lien mobile simple */
.sap-mobile-menu a {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .9rem;
  color: var(--sap-blue) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.sap-mobile-menu a:hover {
  color: var(--sap-blue-light) !important;
  background: rgba(5,97,148,.06);
}

/* Titre groupe "Our Events" mobile */
.sap-m-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem .9rem .35rem;
  font-family: 'Syne', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--sap-blue) !important;
  opacity: .55;
  cursor: default;
}

/* Sous-liens mobile avec badge année */
.sap-mobile-menu .sap-m-event {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .9rem .6rem 1.3rem;
  color: var(--sap-blue) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: 8px;
  transition: color .2s, background .2s, padding-left .2s;
}
.sap-mobile-menu .sap-m-event:hover {
  color: var(--sap-blue-light) !important;
  background: rgba(5,97,148,.06);
  padding-left: 1.55rem;
}

.sap-mobile-divider {
  height: 1px;
  background: rgba(5, 97, 148, 0.08);
  margin: .5rem 0;
}

/* Boutons en bas du menu mobile */
.sap-mobile-menu .sap-btn-contact {
  margin-top: .6rem;
  text-align: center;
  display: block;
}
.sap-mobile-menu .sap-btn-supplier {
  margin-top: .5rem;
  justify-content: center;
  text-align: center;
  color: #ffffff !important;
}
.sap-mobile-menu .sap-btn-supplier span,
.sap-mobile-menu .sap-btn-supplier svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .sap-links,
  .sap-actions  { display: none !important; }
  .sap-burger   { display: flex; }
  .sap-mobile-menu { display: flex; }
}
@media (max-width: 480px) {
  .sap-nav { padding: 0 1rem; }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-2bd36102 *//* retire l'espace au dessus de la première section */
body.home .elementor-section:first-of-type{
  margin-top:0 !important;
  padding-top:0 !important;
}/* End custom CSS */