/* ═══════════════════════════════════════════
   BALDÉ & CO TRAVEL — style.css
═══════════════════════════════════════════ */

:root {
  --navy: #0D1B3E;
  --navy2: #1A3A6B;
  --navy3: #060f22;
  --gold: #C8993A;
  --gold2: #E8C06A;
  --goldf: rgba(200,153,58,0.12);
  --cream: #FAF8F3;
  --cream2: #F2EFE8;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #666666;
  --border: rgba(200,153,58,0.22);
  --green: #1D9E75;
  --red: #e24b4a;

  --FD: 'Cormorant Garamond', Georgia, serif;
  --FB: 'DM Sans', system-ui, sans-serif;

  --ease: 0.38s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--FB);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
  font-family: var(--FB);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}

.tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.h2 {
  font-family: var(--FD);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 16px;
}

.sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 540px;
}

.bar {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* BOUTONS */
.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  transition: var(--ease);
}

.btn-g:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,153,58,.3);
}

.btn-og {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold2);
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  transition: var(--ease);
}

.btn-og:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--goldf);
}

.btn-ow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.8);
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.28);
  transition: var(--ease);
}

.btn-ow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

@keyframes pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: .5; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.on,
.reveal-l.on,
.reveal-r.on {
  opacity: 1;
  transform: translate(0);
}

/* NAVBAR */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: rgba(6,15,34,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: var(--ease);
}

#nav.up {
  height: 62px;
  background: rgba(4,10,24,.99);
}

.nlogo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nlogo-m {
  font-family: var(--FD);
  font-size: 19px;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1;
}

.nlogo-m span {
  color: #fff;
  font-weight: 300;
}

.nlogo-s {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200,153,58,.55);
}

.nlinks {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nlinks a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  transition: var(--ease);
}

.nlinks a:hover {
  color: var(--gold);
}

.ncta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--ease);
}

.ncta:hover {
  background: var(--gold2);
}

.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hbg span {
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  display: block;
  transition: var(--ease);
}

.hbg.x span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hbg.x span:nth-child(2) {
  opacity: 0;
}

.hbg.x span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

#mmenu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(4,10,24,.98);
  backdrop-filter: blur(18px);
  padding: 28px 52px;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 20px;
  z-index: 999;
}

#mmenu.on {
  display: flex;
}

#mmenu a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

#mmenu a:hover {
  color: var(--gold);
}

/* HERO */
#hero {
  min-height: 100vh;
  background: linear-gradient(140deg,var(--navy3) 0%,var(--navy) 55%,var(--navy2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 110px 52px 80px;
  text-align: center;
}

.hgrid {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 64px 64px;
}

.horb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
}

.ho1 {
  width: 560px;
  height: 560px;
  right: -160px;
  top: 50%;
  margin-top: -280px;
  opacity: .10;
}

.ho2 {
  width: 340px;
  height: 340px;
  right: 40px;
  top: 50%;
  margin-top: -170px;
  opacity: .07;
  animation-delay: 2s;
}

.ho3 {
  width: 180px;
  height: 180px;
  right: 150px;
  top: 50%;
  margin-top: -90px;
  opacity: .12;
  animation-delay: 4s;
}

.ho4 {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: 60px;
  opacity: .05;
  animation-delay: 1.5s;
}

.htriangle {
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 240px 240px 0;
  border-color: transparent rgba(200,153,58,.08) transparent transparent;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,153,58,.1);
  border: 1px solid rgba(200,153,58,.35);
  color: var(--gold2);
  padding: 8px 22px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 26px;
  animation: fadeUp .7s ease both;
}

.hbadge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hh1 {
  font-family: var(--FD);
  font-size: clamp(46px,8vw,82px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  animation: fadeUp .7s .15s ease both;
}

.hh1 em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.hline {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  margin: 18px auto;
  animation: fadeUp .7s .25s ease both;
}

.hsub {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 38px;
  animation: fadeUp .7s .3s ease both;
}

.hbtns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
  animation: fadeUp .7s .4s ease both;
}

.hstats {
  display: flex;
  gap: 60px;
  justify-content: center;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: fadeUp .7s .55s ease both;
  flex-wrap: wrap;
}

.hstat .n {
  font-family: var(--FD);
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hstat .l {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-top: 5px;
}

/* SERVICES */
#services {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sp {
  padding: 96px 64px;
  position: relative;
  overflow: hidden;
}

.sp-t {
  background: var(--navy);
}

.sp-e {
  background: var(--cream);
}

.sp-deco {
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(200,153,58,.08);
  pointer-events: none;
}

.sp-deco::before {
  content: '';
  position: absolute;
  inset: 35px;
  border-radius: 50%;
  border: 1px solid rgba(200,153,58,.05);
}

.flist {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.flist li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.75);
}

.flist li .ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200,153,58,.14);
  border: 1px solid rgba(200,153,58,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.flist li p {
  padding-top: 8px;
}

.flist-d li {
  color: var(--muted);
}

.flist-d li .ico {
  background: rgba(13,27,62,.08);
  border-color: rgba(13,27,62,.14);
}

/* PAYS */
#pays {
  background: var(--navy);
  padding: 110px 0;
}

#pays .h2 {
  color: #fff;
}

#pays .sub {
  color: rgba(255,255,255,.55);
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 16px;
}

.pcard {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,153,58,.18);
  border-radius: 6px;
  padding: 36px 28px;
  transition: var(--ease);
  cursor: pointer;
}

.pcard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease);
}

.pcard:hover {
  background: rgba(200,153,58,.07);
  border-color: rgba(200,153,58,.48);
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(0,0,0,.42);
}

.pcard:hover::after {
  transform: scaleX(1);
}

.pflag {
  font-size: 46px;
  margin-bottom: 16px;
  line-height: 1;
}

.pname {
  font-family: var(--FD);
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.psys {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.psep {
  width: 36px;
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
}

.pfeat {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pfeat li {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pfeat li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.ptag {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 14px;
  border-radius: 2px;
  background: rgba(200,153,58,.1);
  border: 1px solid rgba(200,153,58,.3);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
}

/* PROCESSUS */
#processus {
  padding: 110px 0;
  background: var(--cream);
}

.psteps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 64px;
  position: relative;
}

.psteps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg,var(--gold),rgba(200,153,58,.25));
}

.pstep {
  padding: 0 22px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.pcircle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: var(--ease);
}

.pstep:hover .pcircle {
  background: var(--gold);
}

.pnum {
  font-family: var(--FD);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  transition: var(--ease);
}

.pstep:hover .pnum {
  color: var(--navy);
}

.pico {
  font-size: 16px;
  margin-top: 2px;
}

.ptitle {
  font-family: var(--FD);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.pdesc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* PUBLICATIONS */
#publications {
  background: var(--navy3);
  padding: 110px 0;
}

#publications .h2 {
  color: #fff;
}

#publications .sub {
  color: rgba(255,255,255,.55);
}

.pub-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
  margin-top: 16px;
}

.pub-tab {
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: var(--ease);
}

.pub-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.pub-tab:hover {
  color: var(--gold2);
}

.pub-pane {
  display: none;
}

.pub-pane.active {
  display: block;
  animation: fadeUp .4s ease both;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.blog-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--ease);
}

.blog-card:hover {
  border-color: rgba(200,153,58,.5);
  transform: translateY(-5px);
}

.blog-img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}

.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,transparent 50%,rgba(6,15,34,.7));
}

.blog-cat {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
}

.blog-body {
  padding: 22px;
}

.blog-date {
  font-size: 11px;
  color: rgba(200,153,58,.7);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.blog-title {
  font-family: var(--FD);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link:hover {
  color: var(--gold2);
}

/* ADMISSIONS */
.admit-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.admit-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: var(--ease);
}

.admit-card:hover {
  border-color: rgba(200,153,58,.45);
  background: var(--goldf);
}

.admit-flag {
  font-size: 38px;
  flex-shrink: 0;
  line-height: 1;
}

.admit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(29,158,117,.15);
  border: 1px solid rgba(29,158,117,.35);
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5DCAA5;
  margin-bottom: 8px;
}

.admit-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5DCAA5;
}

.admit-uni {
  font-family: var(--FD);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.admit-name {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.admit-field {
  font-size: 12px;
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: 1px;
}

/* TÉMOIGNAGES */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  transition: var(--ease);
  position: relative;
}

.testi-card:hover {
  border-color: rgba(200,153,58,.45);
  transform: translateY(-4px);
}

.testi-card::before {
  content: '"';
  font-family: var(--FD);
  font-size: 70px;
  color: rgba(200,153,58,.15);
  position: absolute;
  top: 10px;
  right: 18px;
  line-height: 1;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star {
  color: var(--gold);
  font-size: 14px;
}

.testi-text {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(200,153,58,.18);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--FD);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.testi-n {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.testi-r {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

/* COACH */
#coach {
  background: var(--gold);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.coach-bg {
  position: absolute;
  top: -20px;
  left: 52px;
  font-family: var(--FD);
  font-size: 220px;
  font-weight: 700;
  color: rgba(13,27,62,.07);
  line-height: 1;
  pointer-events: none;
}

.coach-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.coach-qmark {
  font-family: var(--FD);
  font-size: 110px;
  color: rgba(13,27,62,.14);
  line-height: .5;
  margin-bottom: 20px;
  display: block;
}

.coach-quote {
  font-family: var(--FD);
  font-size: clamp(24px,3.8vw,40px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 32px;
}

.coach-aw {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.coach-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(13,27,62,.15);
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--FD);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.coach-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 1px;
}

.coach-role {
  font-size: 12px;
  color: rgba(13,27,62,.6);
  margin-top: 2px;
}

/* CONTACT */
#contact {
  background: var(--navy);
  padding: 110px 0;
}

#contact .h2 {
  color: #fff;
}

#contact .sub {
  color: rgba(255,255,255,.55);
}

.clayout {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.ccards {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
}

.ccard {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 17px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: var(--ease);
}

.ccard:hover {
  border-color: rgba(200,153,58,.48);
  background: var(--goldf);
}

.cico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200,153,58,.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.clbl {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.cval {
  font-size: 13.5px;
  color: #fff;
  line-height: 1.5;
}

.cbadges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px;
}

.cbadge {
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 10px;
  background: var(--goldf);
  border: 1px solid var(--border);
  color: var(--gold2);
}

.creply {
  margin-top: 24px;
  padding: 18px;
  background: var(--goldf);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}

.creply-t {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.creply-d {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

/* FORMULAIRE */
.fcard {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 44px;
}

.fsteps {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}

.fsi {
  display: flex;
  align-items: center;
  flex: 1;
}

.fsc {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  color: rgba(255,255,255,.4);
  transition: var(--ease);
  flex-shrink: 0;
}

.fsc.act {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.fsc.done {
  background: rgba(29,158,117,.2);
  border-color: var(--green);
  color: var(--green);
}

.fsl {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-left: 9px;
  transition: var(--ease);
  white-space: nowrap;
}

.fsl.act {
  color: var(--gold);
}

.fsline {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 10px;
}

.fpane {
  display: none;
}

.fpane.act {
  display: block;
  animation: fadeUp .4s ease both;
}

.fhead {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 22px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg {
  margin-bottom: 16px;
}

.fg label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
  font-weight: 500;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,153,58,.2);
  border-radius: 3px;
  padding: 13px 15px;
  color: #fff;
  font-family: var(--FB);
  font-size: 14px;
  outline: none;
  transition: var(--ease);
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255,255,255,.22);
  font-size: 13px;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  background: rgba(200,153,58,.05);
}

.fg select option {
  background: #0D1B3E;
  color: #fff;
}

.fg textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.fg input.err,
.fg select.err,
.fg textarea.err {
  border-color: var(--red) !important;
}

.plabel {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.pill {
  padding: 8px 15px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: rgba(255,255,255,.58);
  transition: var(--ease);
}

.pill:hover {
  border-color: rgba(200,153,58,.48);
  color: var(--gold2);
}

.pill.on {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 500;
}

.fnav {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.fnext {
  flex: 2;
  padding: 15px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--ease);
}

.fnext:hover {
  background: var(--gold2);
}

.fnext:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.fback {
  flex: 1;
  padding: 15px;
  background: transparent;
  color: var(--gold2);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--ease);
}

.fback:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.fmsg {
  display: none;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 18px;
  border-radius: 4px;
  margin-bottom: 18px;
  font-size: 14px;
}

.fmsg.on {
  display: flex;
}

.fm-ok {
  background: rgba(29,158,117,.12);
  border: 1px solid rgba(29,158,117,.32);
  color: #5DCAA5;
}

.fm-err {
  background: rgba(226,75,74,.1);
  border: 1px solid rgba(226,75,74,.3);
  color: #F09595;
}

.fmsg-ico {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.spinner2 {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(13,27,62,.25);
  border-top-color: var(--navy);
  animation: spin .7s linear infinite;
  margin: 0 auto;
}

/* FOOTER */
footer {
  background: var(--navy3);
  border-top: 1px solid var(--border);
  padding: 60px 52px 30px;
}

.fgrid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 48px;
}

.fbrand .fl {
  font-family: var(--FD);
  font-size: 21px;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 700;
}

.fbrand .fl span {
  color: #fff;
  font-weight: 300;
}

.fbrand .fs {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200,153,58,.5);
  margin-top: 3px;
  margin-bottom: 14px;
  display: block;
}

.fbrand p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 280px;
}

.fcol h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.fcol ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fcol ul a {
  font-size: 13px;
  color: rgba(255,255,255,.42);
  transition: var(--ease);
}

.fcol ul a:hover {
  color: var(--gold);
}

.fbot {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.fbot-c {
  font-size: 12px;
  color: rgba(255,255,255,.22);
}

.fbot-q {
  font-family: var(--FD);
  font-size: 13px;
  color: rgba(200,153,58,.48);
  font-style: italic;
}

/* FLOATING BUTTONS */
.wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.42);
  transition: var(--ease);
  animation: fadeIn 1s 1s ease both;
}

.wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,.55);
}

.wa svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.wa-tip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  opacity: 0;
  pointer-events: none;
  transition: var(--ease);
}

.wa:hover .wa-tip {
  opacity: 1;
}

#btt {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13,27,62,.85);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--ease);
  cursor: pointer;
}

#btt.on {
  opacity: 1;
  pointer-events: all;
}

#btt:hover {
  background: var(--gold);
  border-color: var(--gold);
}

#btt svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  transition: var(--ease);
}

#btt:hover svg {
  stroke: var(--navy);
}

/* RESPONSIVE */
@media (max-width:1024px) {
  .pgrid {
    grid-template-columns: repeat(2,1fr);
  }

  .psteps {
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
  }

  .psteps::before {
    display: none;
  }

  .blog-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2,1fr);
  }

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

  .fgrid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

@media (max-width:768px) {
  .wrap {
    padding: 0 24px;
  }

  #nav {
    padding: 0 24px;
  }

  .nlinks,
  .ncta {
    display: none;
  }

  .hbg {
    display: flex;
  }

  #services {
    grid-template-columns: 1fr;
  }

  .sp {
    padding: 64px 30px;
  }

  .hstats {
    gap: 30px;
  }

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

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

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

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

  .fcard {
    padding: 26px;
  }

  .fsteps {
    display: none;
  }

  .fgrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fbot {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  #mmenu {
    padding: 24px;
  }

  footer {
    padding: 48px 24px 24px;
  }

  .pub-tabs {
    overflow-x: auto;
  }

  .pub-tab {
    white-space: nowrap;
  }
}

@media (max-width:480px) {
  .hbtns {
    flex-direction: column;
    align-items: center;
  }

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