/* ===========================
   VARIABLES GLOBALES & RESET
=========================== */
:root {
  --abc-orange: #ff9900;
  --abc-orange-hover: #e68a00;
  --abc-blue: #0b439c;
  --abc-dark-blue: #0e1b4d;
  --abc-text-dark: #333333;
  --abc-text-medium: #444444;
  --abc-text-light: #777777;
  --abc-bg-light: #f9fbfd;
  --abc-max-width: 1150px;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--abc-text-dark);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ===========================
TOUTES LES PAGES ACCUEIL BLOC 1 — CONTENU ÉDITORIAL (texte long)
=========================== */
.abc-content-block {
  max-width: 1140px;
  margin: 40px auto;
  padding: 0 20px;
}
.abc-content-block > h2,
.abc-content-block > h3,
.abc-content-block > p,
.abc-content-block > ul,
.abc-content-block > ol,
.abc-content-block > .abc-footnote {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.abc-content-block h2 {
  color: var(--abc-dark-blue);
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 40px 0 15px 0;
}
.abc-content-block h2:first-child { margin-top: 0; }

.abc-content-block h3 {
  color: var(--abc-orange);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.abc-content-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--abc-text-medium);
  margin-bottom: 20px;
}

.abc-content-block strong { color: var(--abc-dark-blue); font-weight: 700; }

.abc-content-block .abc-footnote {
  font-size: 12px;
  color: var(--abc-text-light);
  line-height: 1.4;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .abc-content-block h2 { font-size: 22px; }
  .abc-content-block h3 { font-size: 17px; }
  .abc-content-block { padding: 0 15px; }
}

/* ===========================
  HEADER: ACCUEIL HERO
=========================== */
.abc-topbar {
  background-color: var(--abc-blue);
  color: #fff;
  padding: 8px 15px;
  font-size: 13px;
  width: 100%;
}
.abc-topbar-content {
  max-width: var(--abc-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.abc-topbar-content span { display: flex; align-items: center; gap: 6px; }
.abc-topbar-content svg { width: 14px; height: 14px; fill: currentColor; }
.abc-topbar-content a { color: inherit; text-decoration: none; }
.abc-topbar-content a:hover,
.abc-topbar-content a:focus-visible { text-decoration: underline; }
.abc-address-item { display: flex; }

.abc-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  width: 100%;
  max-width: var(--abc-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 999;
}
.abc-logo-img { max-height: 70px; width: auto; height: auto; display: block; }
.abc-nav-links { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.abc-nav-links a {
  text-decoration: none; color: #000; font-weight: 600; font-size: 15px; transition: color 0.2s;
}
.abc-nav-links a:hover,
.abc-nav-links a:focus-visible { color: var(--abc-orange); }

.abc-menu-checkbox { display: none !important; }
.abc-hamburger {
  display: none; flex-direction: column; cursor: pointer; gap: 6px; padding: 5px; z-index: 1001;
  background: none; border: none;
}
.abc-hamburger span { width: 30px; height: 4px; background-color: var(--abc-blue); border-radius: 2px; transition: 0.3s; }

.abc-buttons-container {
  display: flex; justify-content: center; align-items: center; gap: 15px;
  padding: 10px 0 15px 0; max-width: var(--abc-max-width); margin: 0 auto;
}
.abc-btn {
  text-decoration: none; color: #fff; font-weight: bold; font-size: 12px;
  padding: 8px 20px; border-radius: 30px; display: inline-flex;
  align-items: center; gap: 8px; box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.abc-btn:hover,
.abc-btn:focus-visible { transform: translateY(-2px); box-shadow: 0 5px 10px rgba(0,0,0,0.2); }
.abc-btn-orange { background-color: var(--abc-orange); }
.abc-btn-blue { background-color: var(--abc-blue); }

@media (max-width: 1024px) {
  .abc-hamburger { display: flex; }
  .abc-nav-content {
    position: absolute; top: 100%; left: 0; width: 100%; background: #ffffff;
    padding: 20px 0; box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    opacity: 0; pointer-events: none; transform: translateY(-10px); transition: 0.3s ease; z-index: 1000;
  }
  .abc-nav-links { flex-direction: column; align-items: center; gap: 20px; }
  .abc-menu-checkbox:checked ~ .abc-nav-content { opacity: 1; pointer-events: auto; transform: translateY(0); }
}

@media (max-width: 767px) {
  .abc-address-item { display: none; }
  .abc-topbar-content { justify-content: center; text-align: center; font-size: 11px; gap: 8px; }
  .abc-buttons-container { flex-wrap: nowrap; gap: 8px; }
  .abc-btn { padding: 8px 15px; font-size: 11px; }
  .abc-btn svg { width: 14px; height: 14px; }
}

/* ===========================
     PAGE D ACCUEIL HERO
=========================== */
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-container {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #111;
  padding: 60px 0 100px 0;
}

.hero-container picture {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.2) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text-wrapper {
  max-width: 680px;
  animation: slideInDown .8s ease-out forwards;
}

.hero-tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 15px;
  background: rgba(255,255,255,.25);
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 15px 0;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  text-align: left;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #f0f0f0;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  text-align: justify;
}

.hero-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: 25px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--abc-orange);
  color: #111;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 30px;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 20px rgba(255,153,0,.4);
}

.hero-btn:hover {
  background-color: var(--abc-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,153,0,.6);
}

.boxes-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1140px;
  margin: -60px auto 40px auto;
  padding: 0 20px;
}

.boxes-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
  border-radius: 8px;
  overflow: hidden;
}
.info-box {
  padding: 30px 22px;
  text-align: center;
  background-color: #fff;
  color: var(--abc-text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-box.blue {
  background-color: var(--abc-blue);
  color: #fff;
  z-index: 2;
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.1);
}

.box-icon {
  font-size: 30px;
  margin-bottom: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.info-box.white .box-icon { color: var(--abc-orange); }
.info-box.blue .box-icon { color: #fff; }

.info-box h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.info-box p {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
}
.info-box.white p { color: var(--abc-text-medium); }
.info-box.blue p { color: #e8ecf3; }

@media (max-width: 820px) {
  .hero-container { padding: 50px 0 60px 0; min-height: auto; }
  .hero-btn-wrapper { justify-content: center; }
  .hero-text-wrapper { text-align: center; animation: none; opacity: 1; transform: none; }
  .hero-content h1, .hero-content p { text-align: center; }
  .boxes-wrapper { margin-top: -30px; }
  .boxes-container { grid-template-columns: 1fr; }
  .info-box { padding: 24px 18px; }
}

/* ===========================
   HERO — BOUTON SECONDAIRE DE LA PAGE STAGE DE NDLS (bleu)
=========================== */
.hero-btn-alt {
  display: inline-flex;
  align-items: center;
  background-color: var(--abc-blue);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 30px;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 20px rgba(0,68,204,.35);
  margin-left: 15px;
}

.hero-btn-alt:hover {
  background-color: var(--abc-dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,68,204,.5);
}

@media (max-width: 767px) {
  .hero-btn-alt { margin-left: 0; margin-top: 12px; }
}

/* ===========================
PAGE : ACCUEIL BLOC 1 : STAGES NÉERLANDAIS
=========================== */
.section-stages {
  color: #2b2b2b;
  padding: 60px 20px 40px 20px;
  background-color: var(--abc-bg-light);
  max-width: 1140px;
  margin: 0 auto;
}

.stage-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.col-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stage-highlight-box {
  background-color: #fff;
  border-left: 5px solid var(--abc-orange);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--abc-dark-blue);
  font-size: 16px;
  line-height: 1.4;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 3px 10px rgba(0,0,0,.04);
}

.stage-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--abc-text-medium);
}

.stage-text ul {
  margin: 8px 0;
  padding-left: 20px;
}

.stage-text li {
  margin-bottom: 6px;
}

.button-wrapper {
  margin: 15px 0;
}

.btn-yellow {
  display: inline-block;
  background-color: var(--abc-orange);
  color: #000;
  padding: 12px 28px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .5px;
  transition: all .25s ease;
  box-shadow: 0 4px 12px rgba(255,153,0,.3);
}
.btn-yellow:hover {
  background-color: var(--abc-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,153,0,.4);
}

.col-table {
  flex: 0 0 320px;
  width: 320px;
  min-width: 320px;
}

.compact-table {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eaeaea;
}
.compact-table th {
  background-color: var(--abc-dark-blue);
  color: #fff;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: center;
}

.compact-table td {
  padding: 12px 8px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
}
.compact-table tr:last-child td { border-bottom: none; }

.d-name {
  font-weight: 700;
  display: block;
  color: var(--abc-dark-blue);
  font-size: 14px;
  margin-bottom: 2px;
}
.d-date { font-size: 12px; color: #666; display: block; }
.d-time {
  font-size: 10px;
  background: #edf2f7;
  color: #4a5568;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
  font-weight: 500;
}
.d-price { font-weight: 700; color: var(--abc-dark-blue); }

.table-footnote {
  font-size: 11px;
  color: var(--abc-text-light);
  margin-top: 10px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 800px) {
  .stage-container { flex-direction: column; gap: 25px; }
  .col-table { width: 100%; min-width: 100%; flex: auto; }
  .section-stages { padding: 40px 15px; }
}

/* ===========================
PAGE : ACCUEIL BLOC 2 — STAGES ANGLAIS
=========================== */
.section-stages-anglais {
  color: var(--abc-text-dark);
  padding: 30px 20px;
  background-color: #fff;
  max-width: 1150px;
  margin: 0 auto;
}
.section-stages-anglais .stage-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.section-stages-anglais .col-table-left {
  flex: 0 0 320px;
  width: 320px;
  max-width: 100%;
}

.section-stages-anglais .compact-table {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #eee;
}

.section-stages-anglais .compact-table th {
  background-color: var(--abc-dark-blue);
  color: #fff;
  padding: 12px 6px;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: .5px;
}

.section-stages-anglais .compact-table td {
  padding: 12px 8px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  vertical-align: middle;
}

.section-stages-anglais .d-full {
  font-weight: 700;
  display: block;
  color: var(--abc-text-dark);
  font-size: 14px;
  margin-bottom: 2px;
}
.section-stages-anglais .d-sub { font-size: 11px; color: var(--abc-text-light); display: block; }
.section-stages-anglais .place-txt { font-weight: 700; font-size: 12px; line-height: 1.2; color: var(--abc-text-dark); display: block; }
.section-stages-anglais .price-txt { font-weight: 800; color: var(--abc-dark-blue); font-size: 15px; }

.section-stages-anglais .table-footnote {
  font-size: 11px;
  color: var(--abc-text-light);
  margin-top: 8px;
  line-height: 1.4;
  display: block;
}

.section-stages-anglais .col-text-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-stages-anglais .stage-title {
  color: var(--abc-dark-blue);
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 15px 0;
  font-weight: 900;
  text-transform: uppercase;
}

.section-stages-anglais .intro-block {
  font-size: 15px;
  line-height: 1.6;
  color: var(--abc-text-medium);
  margin-bottom: 15px;
}

.section-stages-anglais .highlight-box {
  background-color: #f8f9fa;
  border-left: 4px solid var(--abc-orange);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--abc-text-medium);
  border-radius: 0 4px 4px 0;
}

.section-stages-anglais .btn-wrapper { margin: 5px 0 20px 0; }

.section-stages-anglais .btn-yellow {
  display: inline-block;
  background-color: var(--abc-orange);
  color: var(--abc-dark-blue);
  padding: 14px 28px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .5px;
  transition: transform .2s ease, background-color .2s ease;
}
.section-stages-anglais .btn-yellow:hover {
  transform: translateY(-2px);
  background-color: var(--abc-orange-hover);
}

.section-stages-anglais .contact-footer {
  font-size: 13px;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 15px;
  line-height: 1.5;
}
.section-stages-anglais .contact-footer a {
  color: var(--abc-dark-blue);
  text-decoration: underline;
  font-weight: 700;
}

@media (max-width: 900px) {
  .section-stages-anglais .stage-container { flex-direction: column-reverse; gap: 25px; }
  .section-stages-anglais .col-table-left { width: 100%; flex: auto; }
  .section-stages-anglais .stage-title { font-size: 22px; text-align: center; }
  .section-stages-anglais .btn-wrapper { text-align: center; }
  .section-stages-anglais .btn-yellow { display: block; text-align: center; }
}

/* ===========================
PAGE : ACCUEIL  BLOC 3 — AVIS GOOGLE (CARROUSEL)
=========================== */
#abc-strict-wrapper {
  max-width: 1140px;
  margin: 40px auto 20px auto;
  padding: 0 20px;
  line-height: normal;
}

#abc-strict-wrapper .abc-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 24px;
  padding: 15px 5px 30px 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0;
}
#abc-strict-wrapper .abc-carousel::-webkit-scrollbar { display: none; }

#abc-strict-wrapper .abc-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid #edf1f7;
  margin: 0;
  height: auto;
  justify-content: space-between;
}

#abc-strict-wrapper .abc-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
}

#abc-strict-wrapper .abc-avatar {
  width: 42px; height: 42px;
  min-width: 42px; min-height: 42px;
  max-width: 42px; max-height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; font-weight: 700; font-size: 18px;
  margin-right: 12px; margin-bottom: 0;
  flex-shrink: 0;
}
#abc-strict-wrapper .abc-user-info { display: flex; flex-direction: column; }
#abc-strict-wrapper .abc-name { font-weight: 700; font-size: 15px; color: var(--abc-dark-blue); margin: 0; line-height: 1.2; }
#abc-strict-wrapper .abc-date { font-size: 12px; color: var(--abc-text-light); margin: 3px 0 0 0; }

#abc-strict-wrapper .abc-google-icon { position: absolute; right: 0; top: 2px; width: 20px; height: 20px; flex-shrink: 0; }

#abc-strict-wrapper .abc-stars { color: var(--abc-orange); font-size: 17px; margin-bottom: 10px; letter-spacing: 2px; }

#abc-strict-wrapper .abc-text {
  font-size: 14px; color: var(--abc-text-dark); line-height: 1.55; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden; text-overflow: ellipsis;
}
#abc-strict-wrapper .abc-text.expanded { -webkit-line-clamp: unset; display: block; }

#abc-strict-wrapper .abc-read-more {
  background: none; border: none; color: var(--abc-dark-blue); padding: 0;
  font-size: 13px; font-weight: 700; cursor: pointer; margin-top: 8px;
  text-align: left; text-decoration: underline;
}
#abc-strict-wrapper .abc-cta-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px; }

#abc-strict-wrapper .abc-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: transform 0.2s ease, background-color 0.2s ease; line-height: 1;
}
#abc-strict-wrapper .abc-cta-btn:hover { transform: translateY(-2px); }

#abc-strict-wrapper .abc-btn-primary { background: var(--abc-dark-blue); color: #ffffff; border: 1px solid var(--abc-dark-blue); box-shadow: 0 3px 8px rgba(14,27,77,0.2); }
#abc-strict-wrapper .abc-btn-primary:hover { background: var(--abc-blue); }

#abc-strict-wrapper .abc-btn-secondary { background: #ffffff; color: var(--abc-dark-blue); border: 1.5px solid var(--abc-dark-blue); }
#abc-strict-wrapper .abc-btn-secondary:hover { background: #f4f6fa; }
#abc-strict-wrapper .abc-btn-secondary svg { fill: var(--abc-dark-blue); }

/* ===========================
PAGE : ACCUEIL BLOC 4 — FUSION CONFIANCE/CHOISIR/ENGAGEMENT
=========================== */
.abc-bloc-fusion {
    color: var(--abc-text-dark);
    max-width: 1150px;
    margin: 40px auto;
    padding: 0 20px;
    overflow-x: hidden;
}

.abc-bloc-fusion .abc-title-confiance {
    color: var(--abc-dark-blue); font-size: 32px; font-weight: 900;
    margin: 0 0 20px 0; line-height: 1.2;
}
.abc-bloc-fusion .abc-title-choisir {
    color: var(--abc-dark-blue); font-size: 30px; font-weight: 900;
    text-transform: uppercase; margin-bottom: 15px; letter-spacing: -0.5px;
}
.abc-bloc-fusion .abc-engagement-title {
    color: var(--abc-blue); font-size: 32px; font-weight: 900;
    text-transform: uppercase; margin: 0 0 25px 0; line-height: 1.2;
}

.abc-bloc-fusion .abc-text-confiance,
.abc-bloc-fusion .abc-lead-txt,
.abc-bloc-fusion .abc-col-left p { font-size: 15px; line-height: 1.6; color: var(--abc-text-medium); }
.abc-bloc-fusion .abc-quotes {
    margin: 15px 0; padding-left: 10px; font-style: italic; color: #555; line-height: 1.5;
}
.abc-bloc-fusion .abc-btn-orange {
    display: inline-block; background-color: var(--abc-orange); color: #ffffff;
    padding: 14px 34px; font-weight: 800; text-transform: uppercase;
    border-radius: 50px; text-decoration: none; font-size: 14px;
    letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(255,153,0,0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.abc-bloc-fusion .abc-btn-orange:hover { transform: translateY(-2px); background-color: var(--abc-orange-hover); }
.abc-bloc-fusion .abc-btn-wrapper { margin-top: 25px; }
.abc-bloc-fusion .abc-engagement-btn-wrap { text-align: center; margin-top: 5px; }

.abc-bloc-fusion .abc-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 50px; margin-bottom: 60px;
}
.abc-bloc-fusion .abc-row.abc-align-start { align-items: flex-start; }
.abc-bloc-fusion .abc-col { flex: 1; }
.abc-bloc-fusion .abc-col.abc-col-wide { flex: 1.2; }

.abc-bloc-fusion .abc-media {
    border-radius: 12px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.abc-bloc-fusion .abc-media video,
.abc-bloc-fusion .abc-media img {
    width: 100%; height: auto; display: block; object-fit: cover;
}
.abc-bloc-fusion .abc-media video { aspect-ratio: 16/9; background: #000; }

.abc-bloc-fusion .abc-features-list,
.abc-bloc-fusion .abc-engagement-list { list-style: none; padding: 0; margin: 0; }
.abc-bloc-fusion .abc-engagement-list { margin-bottom: 30px; }
.abc-bloc-fusion .abc-features-list li,
.abc-bloc-fusion .abc-engagement-list li {
    position: relative; padding-left: 36px; margin-bottom: 18px;
    font-size: 15px; line-height: 1.5; color: var(--abc-text-dark);
}
.abc-bloc-fusion .abc-features-list li::before,
.abc-bloc-fusion .abc-engagement-list li::before {
    content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px;
    background-color: var(--abc-orange); border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 14px; background-position: center; background-repeat: no-repeat;
}
.abc-bloc-fusion .abc-features-list strong,
.abc-bloc-fusion .abc-engagement-list strong { color: #111; font-weight: 700; }
.abc-bloc-fusion .abc-col-right-title { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 20px; }

.abc-bloc-fusion .abc-anim {
    opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease;
}
.abc-bloc-fusion .abc-from-left  { transform: translateX(-60px); }
.abc-bloc-fusion .abc-from-right { transform: translateX(60px); }
.abc-bloc-fusion .abc-from-bottom { transform: translateY(30px); }
.abc-bloc-fusion .abc-anim.abc-visible { opacity: 1; transform: translate(0,0); }
.abc-bloc-fusion .abc-delay-1 { transition-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
    .abc-bloc-fusion .abc-anim { transition: none; opacity: 1; transform: none; }
}

@media (max-width: 900px) {
    .abc-bloc-fusion .abc-row { flex-direction: column; gap: 30px; margin-bottom: 40px; }
    .abc-bloc-fusion .abc-title-confiance,
    .abc-bloc-fusion .abc-title-choisir,
    .abc-bloc-fusion .abc-engagement-title { font-size: 24px; text-align: center; }
    .abc-bloc-fusion .abc-btn-wrapper { text-align: center; }
    .abc-bloc-fusion .abc-btn-orange { display: block; }
    .abc-bloc-fusion .abc-from-left,
    .abc-bloc-fusion .abc-from-right { transform: translateY(30px); }
}

/* ===========================
PAGE : ACCUEIL BLOC 5 — SÉJOURS
=========================== */
.abc-block-sejours {
  color: var(--abc-text-dark);
  max-width: 1150px;
  margin: 40px auto;
  padding: 0 20px;
}
.abc-banner-blue {
  background-color: var(--abc-blue);
  border-radius: 12px;
  padding: 35px 40px;
  color: #ffffff;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.abc-banner-blue.abc-visible { opacity: 1; transform: translateX(0); }

.abc-banner-blue h2 {
  color: #ffd000;
  font-size: 28px;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.2;
}
.abc-banner-blue p.intro-p { font-size: 15px; line-height: 1.5; margin-bottom: 20px; }

.abc-list-blue { list-style: none; padding: 0; margin: 0 0 25px 0; }
.abc-list-blue li { position: relative; padding-left: 35px; margin-bottom: 14px; font-size: 15px; line-height: 1.4; }
.abc-list-blue li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px;
  background-color: var(--abc-orange); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
}
.abc-blue-btn-wrap { text-align: right; }
.abc-btn-orange-pill {
  display: inline-block;
  background-color: var(--abc-orange);
  color: #ffffff;
  padding: 12px 28px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: transform 0.2s, background-color 0.2s;
}
.abc-btn-orange-pill:hover { transform: translateY(-2px); background-color: var(--abc-orange-hover); }

.abc-section-comment { margin-bottom: 50px; }

.abc-title-main {
  color: var(--abc-blue);
  font-size: 32px;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.abc-title-main.abc-visible { opacity: 1; transform: translateY(0); }

.abc-comment-intro { font-size: 15px; line-height: 1.6; color: var(--abc-text-medium); margin-bottom: 30px; }

.abc-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.abc-card-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 230px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.abc-card-item:nth-child(odd)  { transform: translateX(-50px); }
.abc-card-item:nth-child(even) { transform: translateX(50px); }
.abc-card-item.abc-visible { opacity: 1; transform: translateX(0); }
.abc-card-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.abc-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,67,156,0.88) 0%, rgba(11,67,156,0.45) 50%, rgba(0,0,0,0.15) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  text-align: center; padding: 20px; box-sizing: border-box; color: #ffffff;
}
.abc-card-title { font-size: 18px; font-weight: 800; margin-bottom: 5px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.abc-card-sub { font-size: 13px; line-height: 1.3; opacity: 0.95; }

.abc-banner-orange {
  background-color: var(--abc-orange);
  border-radius: 12px;
  padding: 35px 40px;
  color: #ffffff;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.abc-banner-orange.abc-visible { opacity: 1; transform: translateX(0); }

.abc-banner-orange h2 { color: #ffffff; font-size: 30px; font-weight: 900; margin-top: 0; margin-bottom: 12px; }
.abc-banner-orange p.intro-p { font-size: 15px; line-height: 1.5; margin-bottom: 22px; }
.abc-list-orange { list-style: none; padding: 0; margin: 0; }
.abc-list-orange li { position: relative; padding-left: 35px; margin-bottom: 16px; font-size: 15px; line-height: 1.4; }
.abc-list-orange li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px;
  background-color: var(--abc-blue); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .abc-banner-blue, .abc-banner-orange { padding: 25px 20px; }
  .abc-cards-grid { grid-template-columns: 1fr; }
  .abc-card-item { height: 190px; }
  .abc-blue-btn-wrap { text-align: center; }
  .abc-title-main { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .abc-banner-blue, .abc-title-main, .abc-card-item, .abc-banner-orange {
    opacity: 1; transform: none; transition: none;
  }
}

/* ==============================
PAGE : ACCUEIL BLOC 6 — FAQ
============================== */
.abc-faq-item {
  background: #ffffff;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

details.abc-faq-item[open] {
  border: 1px solid var(--abc-blue);
  box-shadow: 0 4px 12px rgba(65,105,225,0.1);
}

.abc-faq-question {
  list-style: none;
  cursor: pointer;
  padding: 22px 25px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--abc-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.abc-faq-question::-webkit-details-marker { display: none; }

details.abc-faq-item[open] .abc-faq-question {
  border-bottom: 1px solid #f0f0f0;
}

.icon-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  color: #c5c9d6;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}
.icon-toggle::after { content: '+'; font-size: 24px; line-height: 1; }

details.abc-faq-item[open] .icon-toggle {
  color: var(--abc-orange);
  transform: rotate(135deg);
}
details.abc-faq-item[open] .icon-toggle::after { content: '+'; }

.abc-faq-content-wrapper {
  display: flex;
  flex-direction: row;
  animation: slideDown 0.4s ease-out;
  padding: 0 25px 25px 25px;
}

.abc-faq-text { flex: 1; padding-left: 30px; color: var(--abc-text-medium); line-height: 1.6; font-size: 1rem; }

.abc-faq-image { width: 220px; max-height: 140px; object-fit: cover; display: block; border-radius: 8px; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .abc-faq-content-wrapper { flex-direction: column-reverse; padding: 0 20px 20px 20px; }
  .abc-faq-image { width: 100%; height: 200px; max-height: none; }
  .abc-faq-text { padding: 20px 0 0 0; }
  .abc-faq-main-title { font-size: 1.6rem; }
}

/* ===========================
PAGE : ACCUEIL BLOC 7 — TÉMOIGNAGES / CARROUSEL
=========================== */


.abc-temoignages-header {
  text-align: center;
  max-width: 1150px;
  margin: 50px auto 25px auto;
  padding: 0 20px;
}
.abc-temoignages-title {
  color: var(--abc-blue);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}
.abc-temoignages-sub { color: var(--abc-text-medium); font-size: 16px; line-height: 1.5; max-width: 800px; margin: 0 auto; }

#abc-carousel-root {
  max-width: 900px;
  margin: 20px auto 50px auto;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  padding: 50px 20px;
}

.abc-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); width: 100%; }

.abc-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.abc-quote-icon { font-size: 60px; color: var(--abc-orange); line-height: 1; margin-bottom: 15px; font-family: serif; }

.abc-text { font-size: 18px; line-height: 1.6; color: var(--abc-text-medium); font-style: italic; margin-bottom: 30px; max-width: 750px; }
.abc-author { 
  display: flex; 
  align-items: center; 
  gap: 30px; 
  text-align: left; 
  background: #f9f9f9; 
  padding: 20px 40px 20px 20px; 
  border-radius: 150px; 
  max-width: 100%; 
}

.abc-avatar {
  width: 250px; 
  height: 250px; 
  min-width: 250px; 
  min-height: 250px;
  border-radius: 50%; 
  object-fit: cover; 
  border: 6px solid #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15); 
  flex-shrink: 0; 
  margin: 0;
  display: block;
}

.abc-info .abc-name { display: block; font-size: 1.1em; font-weight: 700; color: #1a2a3a; }
.abc-info span { font-size: 16px; color: var(--abc-orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.abc-dots { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 40px; min-height: 20px; }
.abc-dot { display: inline-block; width: 14px; height: 14px; background: #ddd; border-radius: 50%; cursor: pointer; transition: background 0.3s, transform 0.3s; }
.abc-dot.active { background: var(--abc-orange); transform: scale(1.3); }

@media (max-width: 750px) {
  .abc-temoignages-title { font-size: 24px; }
  .abc-slide { padding: 0 10px; }
  .abc-text { font-size: 16px; }
  .abc-author { flex-direction: column; text-align: center; border-radius: 30px; padding: 30px; width: 100%; gap: 20px; }
  .abc-avatar { width: 180px; height: 180px; min-width: 180px; min-height: 180px; }
  .abc-info { margin-top: 5px; }
}

/* ===========================
PAGE : ACCUEIL BLOC 8 — BLOG ARTICLES
=========================== */
.custom-blog-container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.custom-blog-title-wrap { text-align: center; margin-bottom: 40px; }
.custom-blog-title { color: var(--abc-orange); font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.custom-blog-subtitle { color: #555; font-size: 18px; line-height: 1.5; }

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

.custom-blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.custom-blog-card:hover { transform: translateY(-5px); }

.custom-card-image-wrap { height: 220px; overflow: hidden; }
.custom-card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.custom-blog-card:hover .custom-card-image-wrap img { transform: scale(1.05); }

.custom-card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }

.custom-date { color: #999; font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }

.custom-card-title { font-size: 18px; font-weight: bold; color: #333; margin-bottom: 20px; line-height: 1.4; }
.custom-card-title a { text-decoration: none; color: #333; transition: color 0.3s; }
.custom-card-title a:hover { color: var(--abc-orange); }

.custom-read-more { display: inline-flex; align-items: center; font-weight: bold; color: var(--abc-orange); text-decoration: none; margin-top: auto; }
.custom-read-more svg { width: 14px; margin-left: 5px; fill: var(--abc-orange); transition: margin-left 0.3s; }
.custom-read-more:hover svg { margin-left: 10px; }

@media (max-width: 768px) {
  .custom-blog-grid { grid-template-columns: 1fr; }
}


/* ============================= 
 CONTENU : STATISTIQUES DE SATISFACTION 
============================= */
.abc-stats-container {
    padding: 8px 0;
    box-shadow: 0 2px 15px rgba(26, 78, 138, 0.05);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.abc-section {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
}
.abc-section:nth-child(even) { background-color: #f7fbfe; }
.abc-section:nth-child(odd) { background-color: #ffffff; }
.abc-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    width: 100%;
}
.abc-row.reverse { flex-direction: row-reverse; }
.abc-col-img {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.abc-col-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 1px solid #ffffff;
    background: #fff;
    padding: 5px;
}
.abc-col-text { flex: 1; text-align: justify; }
.abc-col-text strong { color: #1a4e8a; }
.abc-list { list-style: none; padding: 0; margin: 0; }
.abc-list li { margin-bottom: 12px; padding-left: 0; }
.abc-final-block {
    background-color: var(--abc-blue);
    color: #ffffff;
    padding: 50px 30px;
    text-align: center;
    margin-top: 0;
}
.abc-final-content { max-width: 900px; margin: 0 auto; }
.abc-final-content h3 {
    color: #29b6f6;
    font-size: 24px;
}

.abc-internat-btn-wrap { text-align: center; }

@media (max-width: 768px) {
  .abc-internat-card {
    padding: 40px 20px;
    margin: 20px 15px;
  }
  .abc-internat-card h2 { font-size: 26px; }
}

/* ===========================
   PAGE STAGE DE NÉERLANDAIS — BLOC 3 : JEUNES (Cartes + Animations)
=========================== */

.abc-jeunes-block {
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
  overflow: hidden;
  box-sizing: border-box;
}

/* --- Agencement Image & Texte --- */
.abc-jeunes-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

.abc-jeunes-media img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.abc-jeunes-title {
  color: var(--abc-blue, #0d3b9c);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}

.abc-jeunes-text p, .abc-jeunes-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

/* --- Agencement des 3 mini-cartes --- */
.abc-mini-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.abc-mini-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.abc-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #4CAF50; /* Le vert des cercles */
  border-radius: 50%;
  margin-bottom: 15px;
}

.abc-mini-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.abc-mini-card p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

/* ===========================
   ANIMATIONS AU SCROLL
=========================== */

/* 1. États de départ (cachés et décalés) */
.abc-jeunes-media {
  opacity: 0;
  transform: translateX(80px); /* Vient de la droite */
  transition: opacity 1s ease-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.abc-jeunes-text {
  opacity: 0;
  transform: translateX(-80px); /* Vient de la gauche */
  transition: opacity 1s ease-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.abc-mini-card {
  opacity: 0;
  transform: translateY(60px); /* Viennent du bas */
  transition: opacity 1s ease-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Petit délai pour que les cartes n'arrivent pas toutes en même temps (effet cascade) */
.abc-mini-card:nth-child(1) { transition-delay: 0.1s; }
.abc-mini-card:nth-child(2) { transition-delay: 0.3s; }
.abc-mini-card:nth-child(3) { transition-delay: 0.5s; }

/* 2. État d'arrivée (quand la classe .abc-visible est ajoutée par votre main.js) */
.abc-visible .abc-jeunes-media,
.abc-visible .abc-jeunes-text,
.abc-visible .abc-mini-card,
.abc-jeunes-media.abc-visible,
.abc-jeunes-text.abc-visible,
.abc-mini-card.abc-visible {
  opacity: 1;
  transform: translate(0);
}

/* --- Responsive (Mobiles) --- */
@media (max-width: 900px) {
  .abc-jeunes-top { grid-template-columns: 1fr; }
  .abc-mini-cards-wrap { grid-template-columns: 1fr; }
  
  /* Sur mobile, on réduit les effets de glissement latéraux */
  .abc-jeunes-media { transform: translateY(30px); }
  .abc-jeunes-text { transform: translateY(30px); }
}

/* ===========================
   PAGE STAGE NDLS — BLOC 4 : INTERNAT
=========================== */
.abc-internat-card {
  background: var(--abc-blue); /* Le fameux fond bleu roi */
  color: #ffffff; /* Le texte en blanc */
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.abc-internat-card h2 {
  color: #ffffff; /* Le titre en blanc */
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.abc-internat-intro {
  text-align: center;
  margin-bottom: 25px;
}

.abc-internat-list {
  line-height: 1.8;
  margin-bottom: 30px;
  padding-left: 20px;
}

.abc-internat-btn-wrap {
  text-align: center;
}


/* ===========================
   PAGE STAGE NDLS — BLOC 5: COURS INTENSIFS (Grille + Liste)
=========================== */

.abc-anim-down,
.abc-anim-up {
  opacity: 0;
  transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Position de départ */
.abc-anim-down { transform: translateY(-70px); } /* Vient du haut */
.abc-anim-up   { transform: translateY(70px); }  /* Vient du bas */

/* Position d'arrivée (déclenchée par le JS) */
.abc-anim-active.abc-anim-down, 
.abc-anim-active.abc-anim-up,
.abc-anim-down.abc-anim-active,
.abc-anim-up.abc-anim-active {
  opacity: 1;
  transform: translateY(0);
}


.abc-intensif-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1140px;
  margin: 60px auto;
  padding: 0 20px;
  align-items: center;
  box-sizing: border-box;
}

.abc-intensif-left h2 {
  color: var(--abc-blue);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.abc-intensif-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-top: 30px;
}

.abc-intensif-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.abc-intensif-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-left: 4px solid var(--abc-orange);
}

.abc-intensif-item h3 {
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
  color: var(--abc-blue);
  font-size: 18px;
}

.abc-intensif-item .abc-num {
  background: var(--abc-orange);
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  font-weight: bold;
}

.abc-intensif-item p {
  margin: 0;
  padding-left: 45px;
  font-size: 15px;
  color: var(--abc-text-medium);
}

@media (max-width: 900px) {
  .abc-intensif-block { grid-template-columns: 1fr; }
}

/* ===========================
   PAGE STAGE NDLS — BLOC 6 : SECTION ORANGE
=========================== */

.abc-section-orange {
  background-color: var(--abc-orange);
  color: #fff;
  max-width: 1150px;
  margin: 60px auto;
  padding: 50px 40px;
  border-radius: 15px;
  box-sizing: border-box;
}

.abc-btn-white {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: var(--abc-blue);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.abc-btn-white:hover {
  background-color: var(--abc-blue);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* C'EST CETTE PARTIE QUI CORRIGE LE PROBLÈME GÉANT */
.abc-btn-white svg {
  width: 12px;
  height: 12px;
  margin-left: 10px;
  fill: currentColor;
}

.abc-section-orange h2 {
  color: #fff;
  margin-top: 0;
}

.abc-list-check {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.abc-list-check li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
}

.abc-list-check li svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  margin-top: 2px;
  fill: #fff; /* L'icône sera blanche sur fond orange */
}

/* ===========================
   PAGE STAGE NDLS — BLOC 7 : DOUBLE SECTION
=========================== */
.abc-dual-section {
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  overflow-x: hidden;
  box-sizing: border-box;
}

.abc-dual-section .abc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  min-width: 0;
}

.abc-dual-section .abc-text,
.abc-dual-section .abc-img {
  min-width: 0;
}

.abc-dual-section .abc-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.abc-dual-section .abc-text h2 {
  color: var(--abc-blue);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
}

.abc-dual-section .abc-text ul {
  padding-left: 20px;
}

@media (max-width: 900px) {
  .abc-dual-section .abc-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .abc-dual-section .abc-row.reverse-mobile .abc-text { order: 2; }
  .abc-dual-section .abc-row.reverse-mobile .abc-img { order: 1; }
}

/* --- ANIMATIONS AU SCROLL BLOC 7 --- */
.abc-dual-section .slide-from-right,
.abc-dual-section .slide-from-left {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.abc-dual-section .slide-from-right {
  transform: translateX(80px);
}

.abc-dual-section .slide-from-left {
  transform: translateX(-80px);
}

.abc-dual-section .slide-from-right.abc-visible,
.abc-dual-section .slide-from-left.abc-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive (mobile) animation Bloc 7 --- */
@media (max-width: 900px) {
  .abc-dual-section .slide-from-right { transform: translateX(40px); }
  .abc-dual-section .slide-from-left { transform: translateX(-40px); }
}

/* ===========================
   PAGE STAGE NDLS — BLOC 8 : BANNIÈRE CTA ANGLAIS (UK)
=========================== */
.uk-banner-container {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://abczaam.be/wp-content/uploads/2025/09/uk-great-britain-flag-waving-in-cloudy-blue-sky-2025-03-05-03-54-05-utc-scaled.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  border-radius: 15px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  margin: 60px auto;
  max-width: 1150px;
  box-sizing: border-box;
}
.uk-title {
  margin-top: 0;
  font-size: 32px;
}
.uk-btn-orange {
  display: inline-block;
  background-color: var(--abc-orange);
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  margin-top: 20px;
}




/* ===========================
   HERO UNIVERSEL (Page Anglais, etc.)
=========================== */

/* Petit titre avec tiret pour les Hero */
.abc-tagline {
  display: flex;
  align-items: center;
  color: var(--abc-orange);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.abc-tagline::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: var(--abc-orange);
  margin-right: 15px;
}

.abc-hero-universal {
  position: relative;
  /* L'astuce magique pour forcer le plein écran : */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  
  min-height: 550px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  box-sizing: border-box;
  overflow: hidden;
  color: #fff;
  background-color: var(--abc-dark-blue); /* Couleur de secours */
}

/* L'image de fond */
.abc-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* Centre l'image sur le visage */
  z-index: 1;
}

/* Le voile assombri pour lire le texte */
.abc-hero-overlay {
  position: absolute;
  inset: 0;
  /* Dégradé plus foncé à gauche pour que le texte ressorte bien */
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 2;
}

/* Le conteneur du texte */
.abc-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* La petite ligne orange avec le texte */
.abc-tagline {
  display: flex;
  align-items: center;
  color: var(--abc-orange);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.abc-tagline::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: var(--abc-orange);
  margin-right: 15px;
}

/* Le grand titre */
.abc-hero-content h1 {
  font-size: clamp(32px, 5vw, 56px); /* S'adapte à la taille de l'écran */
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px 0;
  max-width: 750px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Le paragraphe */
.abc-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 35px;
  color: #f0f0f0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Les boutons */
.abc-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* On force la taille des boutons pour ce hero spécifiquement */
.abc-hero-buttons .abc-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 30px;
}

/* --- Responsive Mobile --- */
@media (max-width: 768px) {
  .abc-hero-universal {
    min-height: auto;
    padding: 80px 0;
  }
  .abc-hero-content h1 {
    font-size: 36px;
  }
  .abc-hero-overlay {
    background: rgba(0,0,0,0.6); /* Sur mobile on fonce partout uniformément */
  }
}


/* ===========================
   PAGE ANGLAIS — BLOC 1 : STAGE VS COURS
=========================== */
.abc-single-section {
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
  overflow: hidden; /* Crucial pour ne pas créer de barre de défilement horizontale avec l'animation */
  box-sizing: border-box;
}

.abc-row-balanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.abc-text-col h2 {
  color: var(--abc-blue);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.abc-text-col p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--abc-text-medium);
  margin-bottom: 20px;
}

.abc-custom-list {
  padding-left: 20px;
  margin: 0;
  color: var(--abc-text-medium);
}

.abc-custom-list li {
  margin-bottom: 15px;
  line-height: 1.5;
}

.abc-img-col img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-bottom: 20px;
}

.abc-img-col p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--abc-text-medium);
  margin: 0;
}

/* --- Animations de glissement --- */
.abc-single-section .slide-from-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.abc-single-section .slide-from-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.abc-single-section .slide-from-left.abc-visible,
.abc-single-section .slide-from-right.abc-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive (Mobile) --- */
@media (max-width: 900px) {
  .abc-row-balanced {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* On réduit la distance de glissement sur mobile */
  .abc-single-section .slide-from-left { transform: translateX(-30px); }
  .abc-single-section .slide-from-right { transform: translateX(30px); }
}


/* Effet de chevauchement pour le bloc 2 Anglais */
.abc-overlap-cards {
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

@media (max-width: 900px) {
  .abc-overlap-cards {
    margin-top: 0; /* Sur mobile, on enlève le chevauchement pour que ce soit propre */
  }
}

/* ==========================================================
   PAGE ANGLAIS : CORRECTION BLOC 2 UNIQUEMENT
========================================================== */
.abc-single-section .abc-img-col {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  float: none !important;
}

.abc-single-section .abc-img-col img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  height: auto !important;
  float: none !important;
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  object-fit: cover !important;
}

.abc-single-section .abc-img-col p {
  width: 100% !important;
  display: block !important;
  clear: both !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}


/* ===========================
   PAGE ANGLAIS — BLOC 4 : TABLEAU ET TEXTE
=========================== */
.abc-table-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
  align-items: center;
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Ombre douce comme sur la capture */
  text-align: center;
}

.modern-table th {
  background-color: #0b1a40; /* Bleu marine foncé */
  color: #fff;
  padding: 18px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}

.modern-table td {
  padding: 20px 15px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  font-weight: 700;
  color: #333;
}

.hours-sub {
  display: block;
  font-size: 12px;
  color: #888;
  font-weight: 400;
  margin-top: 4px;
}

.abc-table-text h2 {
  color: var(--abc-blue, #0d3b9c);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}

.abc-table-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}

/* Responsive pour mobile */
@media (max-width: 900px) {
  .abc-table-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Sur mobile, on inverse l'ordre : on met le texte AVANT le tableau pour la logique de lecture */
  .table-container-en {
    order: 2;
  }
  .abc-table-text {
    order: 1;
  }
}


/* Le bouton de la section tableau */
.abc-table-text .abc-btn-orange {
  display: inline-block;
  background-color: var(--abc-orange);
  color: #000; /* Texte foncé comme sur la maquette */
  padding: 14px 30px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
  margin-top: 10px;
}

.abc-table-text .abc-btn-orange:hover {
  background-color: var(--abc-orange-hover);
  transform: translateY(-2px);
}


/* ===========================
   PAGE ANGLAIS — BLOC 5 : DÉROULEMENT DES COURS
=========================== */
.abc-course-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
  align-items: center;
  overflow-x: hidden; 
  box-sizing: border-box;
}

/* Empêche la grille d'exploser à cause de la taille de l'image */
.abc-course-text,
.abc-course-image-wrapper {
  min-width: 0;
  max-width: 100%;
}

.abc-course-text h2 {
  color: var(--abc-blue, #0d3b9c);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 25px;
}

.abc-course-text p, 
.abc-course-text li {
  font-size: 16px;
  line-height: 1.6;
  color: #444; /* ou var(--abc-text-medium) si vous l'avez défini */
}

.abc-course-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.abc-course-text li {
  margin-bottom: 12px;
}

.abc-course-text strong {
  color: #000;
  font-weight: 700;
}

/* Bouton spécifique avec flèche */
.abc-btn-orange-arrow {
  display: inline-flex;
  align-items: center;
  background-color: var(--abc-orange, #ff9900);
  color: #000 !important;
  padding: 14px 30px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
  margin-top: 15px;
}

.abc-btn-orange-arrow:hover {
  background-color: #e68a00;
  transform: translateY(-2px);
}

/* On force la petite flèche à rester petite ! */
.abc-btn-orange-arrow svg {
  width: 16px !important;
  height: 16px !important;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.abc-course-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* --- Animation CSS (Image venant de la gauche) --- */
.anim-slide-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-slide-left.abc-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive Mobile --- */
@media (max-width: 900px) {
  .abc-course-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .anim-slide-left {
    transform: translateX(-30px); 
  }
}


/* ===========================
   PAGE ANGLAIS — BLOC 6 : LIEUX (FOND VERT)
=========================== */

.abc-location-section {
  background-color: #0b6654; /* Le fameux vert élégant et complémentaire */
  color: #ffffff;
  max-width: 1150px; /* Même largeur que les autres blocs */
  margin: 60px auto; /* Centre le bloc sur la page */
  padding: 50px 40px;
  border-radius: 15px; /* Arrondis comme sur les autres sections */
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.abc-location-inner h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
}

.abc-location-inner .intro-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* On met les mots importants en orange pour le contraste */
.abc-location-inner .intro-text strong {
  color: var(--abc-orange, #ff9900);
  font-weight: bold;
}

/* --- Liste avec les petits checks --- */
.abc-location-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.abc-location-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.abc-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--abc-orange, #ff9900);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0; /* Empêche le rond de s'écraser */
}

/* La petite flèche SVG dans le rond */
.abc-check-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Le bouton (Passé en Bleu ABCzaam) --- */
.abc-location-section .abc-btn-white {
  display: inline-flex;
  align-items: center;
  background-color: var(--abc-blue, #0d3b9c); 
  color: #ffffff !important;
  padding: 14px 30px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.abc-location-section .abc-btn-white:hover {
  background-color: #0a2d7a;
  transform: translateY(-2px);
}

/* La flèche du bouton (taille contrôlée) */
.abc-location-section .abc-btn-white svg {
  width: 16px !important;
  height: 16px !important;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Responsive Mobile --- */
@media (max-width: 768px) {
  .abc-location-section {
    padding: 40px 20px;
    margin: 40px 20px; /* Conserve une petite marge sur mobile */
  }
}


/* ===========================
   PAGE ANGLAIS — BLOC 7 : AVANTAGES
=========================== */

.abc-benefits-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1150px;
  margin: 80px auto;
  padding: 0 20px;
  align-items: flex-start;
  box-sizing: border-box;
  overflow: hidden; /* Empêche la barre de défilement horizontale pendant l'animation */
}

/* --- COLONNE GAUCHE --- */
.abc-benefits-left h2 {
  color: var(--abc-blue, #0d3b9c);
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
}

.abc-benefits-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

/* --- ANIMATION DE L'IMAGE (Vient de loin à gauche) --- */
.abc-benefits-image-wrapper {
  width: 100%;
  opacity: 0;
  transform: translateX(-250px); /* Vient de loin à gauche */
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

/* Classe ajoutée par votre script JS (main.js) */
.abc-benefits-image-wrapper.abc-visible {
  opacity: 1;
  transform: translateX(0);
}

.abc-benefits-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* Petite touche esthétique (optionnelle) */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* Légère ombre élégante */
}

/* --- COLONNE DROITE (LISTE) --- */
.abc-numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10px; /* Alignement optique avec la gauche */
}

.abc-numbered-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.abc-numbered-list li:last-child {
  margin-bottom: 0;
}

/* Numéros en vert doux */
.abc-number {
  font-size: 34px;
  font-weight: 900;
  color: #85b085; /* Vert correspondant à votre capture */
  margin-right: 20px;
  line-height: 1;
  min-width: 25px;
}

.abc-list-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #85b085; /* Même vert pour les titres */
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.abc-list-content p {
  font-size: 15px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
  .abc-benefits-section {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 50px auto;
  }
  
  .abc-benefits-left h2 {
    font-size: 30px;
  }
}



/* ===========================
   PAGE ANGLAIS — BLOCS 8 & 9 : PRIX ET EXPÉRIENCE (SYMÉTRIQUES)
=========================== */

.abc-price-section,
.abc-exp-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1150px;
  margin: 80px auto;
  padding: 0 20px;
  align-items: flex-start;
  box-sizing: border-box;
  overflow: hidden; /* Empêche le scroll horizontal pendant l'animation */
}

/* --- COLONNES TEXTE --- */
.abc-text-col h2 {
  color: var(--abc-blue, #0d3b9c);
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
}

.abc-text-col p,
.abc-text-col li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.abc-text-col p {
  margin-bottom: 20px;
}

.abc-text-col ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.abc-text-col li {
  margin-bottom: 12px;
}

.abc-text-col li strong {
  color: #000;
}

/* --- COLONNES IMAGE ET LÉGENDE --- */
.abc-img-col {
  width: 100%;
}

.abc-img-col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.abc-img-col p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* --- ANIMATIONS (Droite et Gauche) --- */
.anim-slide-from-right {
  opacity: 0;
  transform: translateX(250px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.anim-slide-from-left {
  opacity: 0;
  transform: translateX(-250px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

/* Classe de visibilité ajoutée par main.js */
.anim-slide-from-right.abc-visible,
.anim-slide-from-left.abc-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
  .abc-price-section,
  .abc-exp-section {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 50px auto;
  }
  
  /* Inverse l'ordre sur mobile pour l'Expérience : l'image passe au-dessus du texte */
  .abc-exp-section .abc-img-col {
    order: 1;
  }
  .abc-exp-section .abc-text-col {
    order: 2;
  }
  
  .abc-text-col h2 {
    font-size: 30px;
  }
}


/* ===========================
   PAGE ANGLAIS — BLOC 10 : BANNIÈRE CTA NÉERLANDAIS
=========================== */

.nl-banner-container {
  position: relative;
  max-width: 1150px;
  margin: 80px auto;
  padding: 80px 40px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.nl-subtitle {
  display: block;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nl-title {
  font-size: 42px;
  font-weight: 900;
  margin: 0 0 25px 0;
  color: #fff;
}

.nl-description {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 1.6;
}

.nl-description strong {
  color: #fff;
}

.nl-btn-orange {
  display: inline-block;
  background-color: #ff9900; /* Orange ABCzaam */
  color: #fff !important;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.nl-btn-orange:hover {
  background-color: #e68a00;
  transform: scale(1.05);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
  .nl-banner-container {
    margin: 50px 20px;
    padding: 50px 20px;
  }
  
  .nl-title {
    font-size: 32px;
  }
}

/* ===========================
   PAGE SAINT-HUBERT — BLOC 1 : GALERIE
=========================== */
.abc-gallery-section {
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.abc-gallery-section h2 {
  text-align: center;
  color: var(--abc-blue, #0d3b9c);
  margin-bottom: 40px;
}

.abc-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

/* Le correctif crucial : on force la largeur à 100% de la case, pas de l'écran */
.abc-gallery-item {
  width: 100%;
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: block;
}

.abc-gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
  z-index: 2;
}


/* ===========================
   PAGE SAINT-HUBERT — BLOC COULOIR VERT
=========================== */
.abc-immersion-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1150px;
  margin: 80px auto;
  padding: 0 20px;
  align-items: center;
  box-sizing: border-box;
}

/* --- COLONNE GAUCHE (TEXTE) --- */
.abc-text-col h2 {
  color: #0d3b9c;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.abc-text-col p, .abc-text-col li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.abc-text-col ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}

.abc-text-col li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.abc-text-col li::before {
  content: "•"; /* Petit point classique comme sur votre capture */
  color: #000;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* --- COLONNE DROITE (IMAGE POLAROID) --- */
.abc-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.abc-img-col img {
  width: 90%; /* On réduit un peu pour laisser de la place à la rotation */
  height: auto;
  display: block;
  background: #fff; /* Le cadre blanc */
  padding: 12px; /* L'épaisseur du cadre blanc */
  box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* L'ombre douce */
  transform: rotate(3deg); /* La fameuse inclinaison */
}

/* --- VERSION MOBILE --- */
@media (max-width: 768px) {
  .abc-immersion-section {
    grid-template-columns: 1fr; /* Sur mobile, on repasse sur 1 seule colonne */
    gap: 40px;
    margin: 50px auto;
  }
  
  .abc-img-col img {
    width: 100%;
    transform: rotate(0deg); /* On remet l'image droite sur petit écran */
  }
}


/* ===========================
   PAGE SAINT-HUBERT — BLOC ACTIVITÉS (VERT)
=========================== */
.abc-activites-section {
  background-color: #0b6654;
  color: #ffffff;
  max-width: 1150px;
  margin: 60px auto;
  padding: 50px 40px;
  border-radius: 15px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.abc-activites-inner h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.abc-activites-inner > p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.abc-activites-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.abc-activites-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.4;
}

.abc-activites-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--abc-orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.abc-activites-section .abc-btn-white {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: var(--abc-dark-blue);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.abc-activites-section .abc-btn-white:hover {
  background-color: var(--abc-dark-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.abc-delay-1 { transition-delay: 0.1s; }
.abc-delay-2 { transition-delay: 0.25s; }
.abc-delay-3 { transition-delay: 0.4s; }
.abc-delay-4 { transition-delay: 0.55s; }

@media (max-width: 768px) {
  .abc-activites-section { padding: 35px 20px; margin: 40px 20px; }
  .abc-activites-inner h2 { font-size: 24px; }
}

.abc-btn-white.abc-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.abc-btn-white.abc-slide-right.abc-visible {
  opacity: 1;
  transform: translateX(0);
}
/* Ajustement couleur bloc activités (vert clair olive comme la maquette) */
.abc-activites-section {
  background-color: #8fae7c;
  box-shadow: none;
}

.abc-activites-section { background-color: #8fae7c; }
.abc-activites-inner h2,
.abc-activites-inner > p,
.abc-activites-list { opacity: 1 !important; transform: none !important; }


/* ==============================
PAGE : ACCUEIL BLOC 6 — FAQ (mise à jour style "ancien site")
============================== */
/* PAGE : ACCUEIL BLOC 6 — FAQ (largeur du bloc) */
.abc-faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.abc-faq-main-title {
  color: var(--abc-blue);
  font-size: 2.2rem;
  text-transform: uppercase;
  font-weight: 800;
}

.abc-faq-item {
  background: #ffffff;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.abc-faq-item:hover { transform: none; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

.abc-faq-item:has(details[open]),
details[open].abc-faq-item {
  border: 1px solid var(--abc-blue);
  box-shadow: 0 4px 12px rgba(65,105,225,0.1);
}

.abc-faq-question {
  list-style: none;
  cursor: pointer;
  padding: 22px 25px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--abc-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.abc-faq-question::-webkit-details-marker { display: none; }

details[open] .abc-faq-question {
  color: var(--abc-blue);
  background-color: transparent;
  border-bottom: 1px solid #f0f0f0;
}

.icon-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background-color: transparent;
  border-radius: 0;
  color: #c5c9d6;
  font-weight: 400;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.icon-toggle::after { content: '+'; font-size: 24px; line-height: 1; }

details[open] .icon-toggle {
  background-color: transparent;
  color: var(--abc-orange);
  transform: rotate(180deg);
}
details[open] .icon-toggle::after { content: '×'; font-size: 24px; }

.abc-faq-content-wrapper {
  display: flex;
  flex-direction: row;
  border-top: none;
  animation: slideDown 0.4s ease-out;
  padding: 0 25px 25px 25px;
}

.abc-faq-text { flex: 1; padding: 0 0 0 30px; color: var(--abc-text-medium); line-height: 1.6; font-size: 1rem; }

.abc-faq-image { width: 220px; min-height: 100%; max-height: 140px; object-fit: cover; display: block; border-radius: 8px; }

@media (max-width: 768px) {
  .abc-faq-content-wrapper { flex-direction: column-reverse; padding: 0 20px 20px 20px; }
  .abc-faq-image { width: 100%; height: 200px; max-height: none; }
  .abc-faq-text { padding: 20px 0 0 0; }
  .abc-faq-main-title { font-size: 1.6rem; }
}

/* PAGE : SAINT-HUBERT — BLOC CARTE GOOGLE MAPS */
.abc-map-section {
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
}
.abc-map-section h2 {
  color: var(--abc-blue);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.abc-map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 45%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.abc-map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.abc-map-link {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: var(--abc-blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}
.abc-map-link:hover {
  background: var(--abc-blue-dark);
}

@media (max-width: 768px) {
  .abc-map-wrapper { padding-top: 75%; }
  .abc-map-section h2 { font-size: 24px; }
}


/* ===========================
PAGE : QUI SOMMES-NOUS — BLOC 2 : NOS SECRETS (FOND VERT)
=========================== */
.abc-secrets-section {
  background-color: #0b6654;
  max-width: 1150px;
  margin: 60px auto;
  padding: 50px 40px;
  border-radius: 15px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.abc-secrets-inner h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 20px;
}

.abc-secrets-intro {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.abc-secrets-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.abc-secrets-list li {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 22px;
}
.abc-secrets-list li:last-child { margin-bottom: 0; }

.abc-secrets-check {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--abc-orange);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 18px;
  flex-shrink: 0;
}
.abc-secrets-check svg { width: 16px; height: 16px; }

.abc-secrets-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #0b6654;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.abc-secrets-btn:hover { background-color: #f0f0f0; transform: translateY(-2px); }
.abc-secrets-btn svg { width: 16px; height: 16px; stroke-width: 3; }

/* --- Animation : monte depuis le bas de l'écran --- */
.abc-secrets-inner.abc-anim-up {
  opacity: 1;
  transform: translateY(0);
  /* Durée ramenée à 0.8s pour le mouvement et 0.6s pour l'opacité */
  transition: opacity 0.6s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.abc-secrets-inner.abc-anim-up:not(.abc-visible) {
  opacity: 0;
  transform: translateY(60px); /* 60px au lieu de 300px : beaucoup plus naturel */
}

/* --- Bouton : arrive depuis la droite --- */
.abc-secrets-btn {
  opacity: 1;
  transform: translateX(0);
  /* Délai réduit à 0.2s pour un léger décalage sans temps mort */
  transition: opacity 0.6s ease-out 0.2s, 
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, 
              background-color 0.2s ease;
}

.abc-secrets-inner.abc-anim-up:not(.abc-visible) .abc-secrets-btn {
  opacity: 0;
  transform: translateX(80px); /* 80px au lieu de 600px */
}


/* PAGE : QUI SOMMES-NOUS - BLOC EQUIPE EXPERTS */
.abc-team-section {
  max-width: 1150px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #fff;
}
.abc-team-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.abc-team-text h2 {
  color: var(--abc-blue);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.25;
}
.abc-team-text p {
  color: var(--abc-blue);
  margin-bottom: 20px;
}
.abc-team-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.abc-team-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: var(--abc-blue);
}
.abc-team-text ul li::before {
  content: "•";
  color: var(--abc-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.abc-team-img {
  min-height: 300px;
  background: #f0f0f0;
  border-radius: 12px;
}
.abc-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .abc-team-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.abc-team-text.anim-slide-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  color: var(--abc-blue);

}
.abc-team-img.anim-slide-left {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.abc-team-text.anim-slide-down.abc-visible,
.abc-team-img.anim-slide-left.abc-visible {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--abc-blue);
}


/* PAGE : ACCUEIL — BLOC SIGNIFICATION ABCZAAM */
.abc-meaning-section {
  background-color: var(--abc-orange);
  max-width: 1150px;
  margin: 60px auto;
  padding: 50px 40px;
  border-radius: 15px;
  box-sizing: border-box;
}
.abc-meaning-inner h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 25px;
  line-height: 1.2;
}
.abc-meaning-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.abc-meaning-list li {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 22px;
}
.abc-meaning-list li:last-child { margin-bottom: 0; }
.abc-meaning-check {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--abc-blue);
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 18px;
  flex-shrink: 0;
  font-size: 14px;
}

.abc-meaning-section.abc-anim-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.abc-meaning-section.abc-anim-up.abc-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .abc-meaning-section { padding: 35px 20px; margin: 40px 20px; }
  .abc-meaning-inner h2 { font-size: 24px; }
}

/* PAGE : ACCUEIL — BLOC VALEURS + POURQUOI NOS STAGES */
.abc-values-section {
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.abc-values-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}
.abc-values-header h2 {
  color: var(--abc-blue);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}
.abc-values-header > p {
  font-size: 16px;
  color: var(--abc-text-medium);
  margin-bottom: 25px;
}
.abc-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}
.abc-values-list li {
  font-size: 16px;
  color: var(--abc-text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.abc-values-icon { font-size: 18px; flex-shrink: 0; }

.abc-values-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.abc-values-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.abc-values-text h2 {
  color: var(--abc-blue);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 20px 0;
}
.abc-values-text > p {
  font-size: 16px;
  color: var(--abc-text-medium);
  margin-bottom: 15px;
}
.abc-values-text .abc-custom-list {
  padding-left: 20px;
  margin: 0 0 25px 0;
  color: var(--abc-text-medium);
}
.abc-values-text .abc-custom-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .abc-values-row { grid-template-columns: 1fr; gap: 30px; }
  .abc-values-header h2,
  .abc-values-text h2 { font-size: 24px; }
}

/* ==========================================================
   PAGE ANGLAIS — BLOCS 8 (PRIX) & 9 (EXPÉRIENCE)
========================================================== */

/* 1. Définition de la grille 2 colonnes pour ces deux blocs */
.abc-price-section,
.abc-exp-section {
  max-width: 1150px !important;
  width: 100% !important;
  margin: 60px auto !important;
  padding: 0 20px !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 60px !important;
  box-sizing: border-box !important;
}

/* 2. Largeur des deux colonnes (Texte et Image) : 50% chacune */
.abc-price-section > .abc-text-col,
.abc-price-section > .abc-img-col,
.abc-exp-section > .abc-text-col,
.abc-exp-section > .abc-img-col {
  flex: 0 0 calc(50% - 30px) !important;
  max-width: calc(50% - 30px) !important;
  width: calc(50% - 30px) !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
  float: none !important;
  position: static !important;
}

/* 3. Style des titres et listes */
.abc-price-section .abc-text-col h2,
.abc-exp-section .abc-text-col h2 {
  color: var(--abc-blue, #0d3b66) !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  margin: 0 0 20px 0 !important;
}

.abc-price-section .abc-text-col ul,
.abc-exp-section .abc-text-col ul {
  padding-left: 20px !important;
  margin: 0 !important;
  color: var(--abc-text-medium, #4a5568) !important;
}

.abc-price-section .abc-text-col li,
.abc-exp-section .abc-text-col li {
  margin-bottom: 15px !important;
  line-height: 1.5 !important;
}

/* 4. Forcer l'image à 100% de sa colonne (retire le mode vignette / rotation) */
.abc-price-section .abc-img-col img,
.abc-exp-section .abc-img-col img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
  transform: none !important;
  object-fit: cover !important;
}

/* 5. Paragraphe sous l'image */
.abc-price-section .abc-img-col p,
.abc-exp-section .abc-img-col p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: var(--abc-text-medium, #4a5568) !important;
  margin: 0 !important;
  width: 100% !important;
}

/* 6. Responsive Mobile (< 900px) */
@media (max-width: 900px) {
  .abc-price-section,
  .abc-exp-section {
    flex-direction: column !important;
    gap: 35px !important;
  }

  /* Pour le bloc 9 sur mobile, on garde le titre en premier si désiré */
  .abc-exp-section {
    flex-direction: column-reverse !important;
  }

  .abc-price-section > .abc-text-col,
  .abc-price-section > .abc-img-col,
  .abc-exp-section > .abc-text-col,
  .abc-exp-section > .abc-img-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}



/* ============================
   FOOTER — ABCzaam
============================ */
.abc-pure-footer {
  --abc-orange: #f28e13;
  --abc-blue: #0b3b84;
  --abc-dark-blue: #052659;
  font-family: system-ui, -apple-system, sans-serif;
  color: #fff;
  line-height: 1.6;
}
.abc-pure-footer a { color: #fff; text-decoration: none; transition: opacity 0.2s; }
.abc-pure-footer a:hover, .abc-pure-footer a:focus-visible { opacity: 0.7; }

/* SOCIAL BAR */
.abc-social-bar { display: flex; justify-content: center; gap: 20px; padding: 30px 10px; }
.abc-social-bar a {
  display: flex; justify-content: center; align-items: center;
  width: 45px; height: 45px; border-radius: 50%; transition: transform 0.2s;
}
.abc-social-bar a:hover, .abc-social-bar a:focus-visible { transform: translateY(-3px); opacity: 1; }
.abc-social-bar svg { width: 22px; height: 22px; fill: #fff; }
.abc-gg-blue { background: #4285F4; }
.abc-gg-red { background: #EA4335; }
.abc-gg-yellow { background: #FBBC05; }
.abc-gg-green { background: #34A853; }

/* CTA BANNER */
.abc-cta-banner {
  background: var(--abc-orange); padding: 40px 10%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.abc-cta-text h4 { font-size: 14px; text-transform: uppercase; margin: 0; }
.abc-cta-text h2 { font-size: clamp(28px, 4vw, 42px); margin: 5px 0; color: #fff; }
.abc-cta-text p { margin: 0; font-size: 16px; max-width: 650px; }
.abc-cta-btn {
  background: var(--abc-blue); padding: 15px 40px; border-radius: 50px;
  font-weight: bold; font-size: 16px; transition: background 0.2s;
}
.abc-cta-btn:hover, .abc-cta-btn:focus-visible { background: var(--abc-dark-blue); opacity: 1; }

/* MAIN FOOTER */
.abc-main-footer { background: var(--abc-blue); padding: 60px 10% 20px; }
.abc-footer-grid {
  display: grid; grid-template-columns: 1.5fr 2fr 1fr; gap: 40px; margin-bottom: 40px;
}
.abc-contact-item { margin-bottom: 15px; font-size: 15px; }
.abc-footer-heading { font-size: 20px; font-weight: bold; margin-bottom: 20px; }
.abc-nav-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.abc-footer-links ul { list-style: none; padding: 0; margin: 0; }
.abc-footer-links li { margin-bottom: 12px; font-size: 15px; }
.abc-copyright {
  border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px;
  text-align: center; font-size: 14px;
}

@media (max-width: 992px) {
  .abc-footer-grid, .abc-nav-split { grid-template-columns: 1fr; }
  .abc-cta-banner { flex-direction: column; text-align: center; }
}

