/* ═══════════════════════════════════════════
   VARIABLES & FONTS
═══════════════════════════════════════════ */
:root {
  --aac-orange: #fe4b00;
  --aac-orange2: #e04800;
  --aac-black: #111111;
  --aac-white: #ffffff;
  --aac-gray: #888888;
  --aac-green: #00deb5;
  --aac-purple: #6c00ff;
  --aac-pink: #ff97d6;
  --aac-yellow: #ffc500;
}

@font-face {
  font-family: "SamsungSharpSans";
  src: url("../fonts/samsungsharpsans.otf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "SamsungSharpSans";
  src: url("../fonts/samsungsharpsans-medium.otf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "SamsungSharpSans";
  src: url("../fonts/samsungsharpsans-bold.otf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "MYRIADPRO-REGULAR";
  src: url("../fonts/MYRIADPRO-REGULAR.OTF") format("truetype");
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "SamsungSharpSans", sans-serif;
  background: var(--aac-white);
  color: var(--aac-black);
  overflow-x: hidden;
}

h1,
h2 {
  font-family: "SamsungSharpSans", sans-serif;
  font-weight: 700;
}

section {
  padding: 2.5rem 0;
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.text-orange {
  color: var(--aac-orange) !important;
}
.bg-orange {
  background: var(--aac-orange) !important;
}
.fw-900 {
  font-weight: 900 !important;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

/* ═══════════════════════════════════════════
   HEADER & TOPBAR
═══════════════════════════════════════════ */
#header {
  z-index: 100;
  position: sticky;
  top: 0;
  background: var(--aac-black);
}
.topbar {
  padding: 0.5rem 0;
}
.topbar a,
.topbar span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--aac-white);
  text-decoration: none;
  font-size: 0.688rem;
}

.topbar a:hover {
  color: var(--aac-orange);
}
.topbar .bi {
  font-size: 0.85rem;
  margin-right: 0.3rem;
  color: var(--aac-white);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar-main {
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  font-family: "SamsungSharpSans";
  font-weight: 700;
}
.nav-links li a {
  color: var(--aac-white);
  font-size: 0.688rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.nav-links li a:hover {
  color: var(--aac-orange);
}

.btn-cta {
  background: var(--aac-white);
  color: var(--aac-black);
  font-size: 0.688rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  padding: 0.5rem 1.3rem;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.15s;
}
.btn-cta:hover {
  background: var(--aac-orange);
  color: var(--aac-white);
  transform: translateY(-1px);
}
.btn-cta .bi {
  font-size: 0.9rem;
}

.navbar-toggler-custom {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.navbar-toggler-custom:hover {
  border-color: var(--aac-orange);
}
.navbar-toggler-custom .bi {
  font-size: 1.25rem;
  color: var(--aac-white);
}

/* ═══════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  visibility: visible;
  pointer-events: all;
}

.mm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.mobile-menu.open .mm-overlay {
  opacity: 1;
}

.mm-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--aac-black);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-left: 2px solid var(--aac-orange);
}
.mobile-menu.open .mm-drawer {
  transform: translateX(0);
}

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #222;
  margin-bottom: 1.5rem;
}

.mm-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 0.2rem;
}
.mm-close:hover {
  color: var(--aac-orange);
}

.mm-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.mm-nav li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s,
    padding-left 0.2s;
  border-bottom: 1px solid #1c1c1c;
}
.mm-nav li a:hover {
  color: var(--aac-white);
  background: rgba(240, 90, 26, 0.12);
  padding-left: 1rem;
}
.mm-nav li a .bi {
  color: var(--aac-orange);
  font-size: 1.1rem;
}

.mm-footer {
  padding-top: 1.25rem;
  border-top: 1px solid #222;
  margin-top: 0.5rem;
}
.mm-footer .btn-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.mm-socials {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.mm-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.mm-socials a:hover {
  border-color: var(--aac-orange);
  color: var(--aac-orange);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--aac-orange);
  min-height: 540px;
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-search {
  position: relative;
  max-width: 370px;
  margin-bottom: 2rem;
}
.hero-search input {
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 30px;
  color: var(--aac-white);
  font-size: 0.88rem;
  padding: 0.4rem 1rem 0rem 2.8rem;
  outline: none;
  backdrop-filter: blur(4px);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.hero-search input:focus {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.8);
}
.hero-search .bi {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--aac-white);
  z-index: 1;
  font-size: 0.95rem;
}

.hero-badge {
  font-size: 0.688rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "SamsungSharpSans";
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 2.326rem);
  line-height: 1.03;
  color: var(--aac-white);
  text-transform: uppercase;
  margin: 2rem 0;
  letter-spacing: 0.01em;
  font-family: "SamsungSharpSans";
  font-weight: 700;
}

.hero-sub {
  font-size: 0.688rem;
  color: var(--aac-white);
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-hero-primary,
.btn-hero-secondary {
  font-size: 0.688rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 0.65rem 1.6rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.15s,
    box-shadow 0.25s;
}
.btn-hero-primary {
  background: var(--aac-white);
  color: var(--aac-orange);
  border: none;
}
.btn-hero-primary:hover {
  background: var(--aac-black);
  color: var(--aac-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--aac-white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   VIDEO CARD
═══════════════════════════════════════════ */
.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.play-btn {
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background: #ffffff5e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s,
    background 0.2s;
}
.video-card:hover .play-btn {
  transform: scale(1.1);
  background: #ffffff5e;
}
.play-btn .bi {
  font-size: 4rem;
  color: var(--aac-white);
  margin-left: 3px;
}
.video-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
}
.video-bar-fill {
  height: 100%;
  width: 32%;
  background: var(--aac-white);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   HERO STATS
═══════════════════════════════════════════ */
.hero-stats {
  margin-top: 2rem;
}

.stat-item {
  padding: 0.5rem 0;
  position: relative;
}
.stat-number {
  font-weight: 900;
  font-size: 4.057rem;
  color: var(--aac-white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.count-up {
  display: inline-block;
}

/* ═══════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════ */
#scrollTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  background: var(--aac-orange);
  color: var(--aac-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.2s;
}
#scrollTop.show {
  opacity: 1;
  transform: translateY(0);
}
#scrollTop:hover {
  background: var(--aac-orange2);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 0;
}
.footer-main {
  padding: 3rem 0 2rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--aac-white);
  line-height: 1.6;
  max-width: 220px;
  margin: 1rem 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.footer-heading {
  font-size: 0.854rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  color: var(--aac-white);
  margin-bottom: 1.5rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.footer-links {
  gap: 0.55rem;
}
.footer-contact {
  gap: 0.75rem;
}

.footer-links li a {
  font-size: 0.688rem;
  color: var(--aac-green);
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
  display: inline-block;
}
.footer-links li a:hover {
  color: var(--aac-white);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--aac-green);
}
.footer-contact li .bi {
  color: var(--aac-green);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact li a:hover {
  color: var(--aac-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--aac-white);
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.footer-socials a:hover {
  border-color: var(--aac-orange);
  color: var(--aac-orange);
  background: rgba(254, 75, 0, 0.08);
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  background: var(--aac-purple);
  position: relative;
  overflow: hidden;
  padding: 3.313rem 0;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--aac-white);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.cta-subtitle {
  font-size: 1.208rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aac-white);
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.688rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.15s,
    box-shadow 0.25s;
  white-space: nowrap;
}
.cta-btn--primary {
  background: var(--aac-white);
  color: #6200ea;
  border: 2px solid var(--aac-white);
}
.cta-btn--primary:hover {
  background: transparent;
  color: var(--aac-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.cta-btn--outline {
  background: transparent;
  color: var(--aac-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--aac-white);
  color: var(--aac-white);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   DIPLOMES SECTION
═══════════════════════════════════════════ */
.diplomes-section {
  background: var(--aac-white);
}

.diplomes-title {
  font-size: clamp(1.6rem, 3.5vw, 2.821rem);
  text-transform: uppercase;
  color: var(--aac-black);
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}
.diplomes-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.diplomes-carousel .slick-slide {
  padding: 0 10px;
  height: auto;
}

.diplome-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 1.25rem 1.25rem;
  color: var(--aac-white);
  position: relative;
  min-height: 220px;
  width: 200px;
  flex-shrink: 0;
}
.diplome-card--circle {
  border-radius: 50%;
  width: 230px;
  height: 230px;
  min-height: unset;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem 2.75rem;
}
.diplome-card--square {
  width: 200px;
  min-height: 230px;
}
.diplome-card--arch {
  border-radius: 120px 120px 0 0;
  width: 190px;
  min-height: 230px;
  align-items: flex-start;
  padding: 2rem 2rem 1.5rem;
}

.diplome-card--green {
  background: var(--aac-green);
}
.diplome-card--purple {
  background: var(--aac-purple);
}
.diplome-card--pink {
  background: var(--aac-pink);
}
.diplome-card--yellow {
  background: var(--aac-yellow);
}

.diplome-card__dots {
  display: flex;
  gap: 4px;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.diplome-card__dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  display: block;
}
.diplome-card__name {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--aac-white);
  line-height: 1.1;
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
}
.diplome-card__info {
  font-size: 0.788rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aac-white);
  line-height: 1.5;
  margin: 0 0 auto;
}
.diplome-card__btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  color: var(--aac-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.diplome-card__btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--aac-white);
  color: var(--aac-white);
}

.diplomes-note {
  font-size: 1.208rem;
  color: #1d1d1b;
  font-family: "MYRIADPRO-REGULAR";
  font-weight: 400;
  line-height: 1.3;
  margin-top: 3.05rem;
}

/* ═══════════════════════════════════════════
   DOMAINES SECTION
═══════════════════════════════════════════ */
.domaines-title {
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 3.441rem);
  text-transform: uppercase;
  color: var(--aac-black);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.domaines-subtitle {
  font-size: 1.671rem;
  font-weight: 400;
  font-family: "MYRIADPRO-REGULAR";
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.domaines-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.domaines-arrow-down {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 5rem;
  color: var(--aac-black);
}

.domaine-slide {
  padding: 0 0.5rem;
  height: auto !important;
}
.domaines-carousel .slick-prev,
.domaines-carousel .slick-next {
  display: none !important;
}

/* Domaine items */
.domaine-item--circle {
  border-radius: 50%;
  width: 100%;
  height: 250px;
  aspect-ratio: unset;
}
.domaine-item--circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}
.domaine-item--square-img {
  height: 250px;
  aspect-ratio: unset;
}
.domaine-item--square-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.domaine-item--square,
.domaine-item--arch {
  height: 250px;
  aspect-ratio: unset;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
}
.domaine-item--square {
  padding: 1.5rem 1.25rem 1.25rem;
}
.domaine-item--arch {
  border-radius: 120px 120px 0 0;
  padding: 2rem 1.25rem 1.5rem;
}

.domaine-item--green {
  background: var(--aac-green);
}
.domaine-item--orange {
  background: var(--aac-orange);
}
.domaine-item--yellow {
  background: var(--aac-yellow);
}
.domaine-item--purple {
  background: var(--aac-purple);
}
.domaine-item--pink {
  background: var(--aac-pink);
}

.domaine-name {
  font-family: "Helvetica";
  font-weight: 700;
  font-size: 1.503rem;
  color: var(--aac-white);
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.01em;
}
.domaine-desc {
  font-size: 0.884rem;
  color: var(--aac-white);
  line-height: 1.5;
  margin: 0;
  padding-bottom: 1.5rem;
}
.domaine-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
.domaine-tags a {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--aac-white);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.domaine-tags a:hover {
  color: var(--aac-white);
}

/* ═══════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════ */
.why-section {
  background: var(--aac-purple);
  overflow: hidden;
}
.why-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--aac-white);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.why-subtitle {
  font-size: 1.166rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.why-list li {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.why-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aac-white);
  flex-shrink: 0;
}
.why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.why-images {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  height: 380px;
}
.why-img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}
.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════ */
.testimonials-section {
  background: var(--aac-white);
  overflow: hidden;
}
.testimonials-title {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--aac-black);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.testimonials-subtitle {
  font-size: 1.204rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aac-black);
  margin: 0;
}
.testimonials-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.testimonials-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--aac-green);
  border: none;
  color: var(--aac-white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  z-index: 2;
}
.testimonials-arrow:hover {
  background: var(--aac-green);
  transform: scale(1.05);
}
.testimonials-slider {
  flex: 1;
  min-width: 0;
}
.testimonials-slider .slick-list {
  padding: 1rem 0;
}

.testimonial-slide {
  padding: 0 1.125rem;
}
.testimonial-card {
  background: var(--aac-green);
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-height: 280px;
}
.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: var(--aac-green);
  font-size: 0.75rem;
  background-color: var(--aac-white);
  padding: 5px;
  border-radius: 8px;
}
.testimonial-name {
  font-size: 1.122rem;
  text-transform: uppercase;
  color: var(--aac-white);
  letter-spacing: 0.05em;
  margin: 0.25rem 0 0;
}
.testimonial-text {
  font-size: 0.82rem;
  color: var(--aac-white);
  line-height: 1.6;
  margin: 1.5rem 0 0;
  text-align: left;
}
.site-video {
  text-align: center;
}
.site-video video {
  height: 600px;
  width: 100%;
}
/* ═══════════════════════════════════════════
  RESPONSIVE 
═══════════════════════════════════════════ */
@media (min-width: 992px) {
  .navbar-toggler-custom {
    display: none;
  }
}

@media (max-width: 1200px) {
  .nav-links li a {
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 991.98px) {
  .nav-links,
  .btn-cta.d-nav {
    display: none !important;
  }
  .hero {
    padding: 2.5rem 0 3rem;
  }
  .hero-stats .row {
    justify-content: center;
  }
  .video-card {
    margin-top: 2.5rem;
  }
  .why-images {
    height: 280px;
  }
  .why-img-wrap--arch-tall {
    width: 120px;
    height: 250px;
  }
  .why-img-wrap--arch-short {
    width: 120px;
    height: 244px;
  }
  .why-img-wrap--circle {
    width: 110px;
    height: 230px;
  }
}

@media (max-width: 767.98px) {
  .domaine-item--square-img img,
  .domaine-item--square,
  .domaine-item--arch {
    width: 60%;
    margin: 0 auto;
  }

  .diplome-card,
  .diplome-card--circle,
  .diplome-card--arch {
    width: 150px;
    min-height: 180px;
    padding: 2rem 1rem 16px 1.5rem;
  }
  .diplome-card--circle {
    height: 150px;
    padding: 2rem 2rem;
  }
  .diplome-card__name {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .topbar a,
  .topbar span {
    font-size: 0.5rem;
  }
  .stat-number {
    font-size: 3.057rem;
  }
  .stat-divider {
    display: none;
  }

  .hero-actions,
  .why-actions,
  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions {
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary,
  .why-btn,
  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonials-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .why-images {
    height: 200px;
    gap: 0.5rem;
  }
  .why-img-wrap--arch-tall {
    width: 90px;
    height: 180px;
  }
  .why-img-wrap--arch-short {
    width: 90px;
    height: 200px;
  }
  .why-img-wrap--circle {
    width: 80px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .diplomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .diplome-card--circle {
    width: 100%;
  }
}
