/* =============================================
   ENOFOCA — Institut Universitaire
   Feuille de style globale
   Palette : Navy #0C1E3D / Or #C8962A
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Variables ── */
:root {
  --navy: #0C1E3D;
  --navy-mid: #14305E;
  --navy-light: #1A4080;
  --gold: #C8962A;
  --gold-light: #E8B84B;
  --gold-pale: #FBF0D9;
  --white: #FFFFFF;
  --offwhite: #F8F6F2;
  --text: #1A1A2E;
  --text-muted: #5C6480;
  --border: #E4DDD2;
  --shadow-sm: 0 2px 12px rgba(12, 30, 61, .08);
  --shadow-md: 0 8px 32px rgba(12, 30, 61, .14);
  --shadow-lg: 0 20px 60px rgba(12, 30, 61, .22);
  --radius: 12px;
  --radius-lg: 20px;
  --tr: .35s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--text-muted);
  font-size: .96rem;
}

/* ── Layout helpers ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white) !important;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  color: var(--text);
  margin-bottom: 1rem;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1rem;
}

.section-desc.light {
  color: rgba(255, 255, 255, .75);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .78rem 1.8rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--tr);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: #b5831e;
  border-color: #b5831e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 42, .4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: .55rem 1.25rem;
  font-size: .8rem;
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1.1rem 0;
  transition: var(--tr);
}

.navbar.scrolled {
  background: var(--navy);
  padding: .7rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  border-radius: 6px;
}

.navbar-logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1;
}

.navbar-logo-text small {
  font-size: .68rem;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .06em;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.navbar-nav a {
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  font-weight: 500;
  padding: .42rem .7rem;
  border-radius: 6px;
  transition: var(--tr);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--gold-light);
  background: rgba(255, 255, 255, .08);
}

.navbar-cta .btn {
  padding: .52rem 1.2rem;
  font-size: .8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  transition: var(--tr);
}

.mobile-nav a:hover {
  color: var(--gold-light);
}

.mobile-nav .btn {
  margin-top: 1rem;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #081426 0%, var(--navy) 45%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 150, 42, .12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(200, 150, 42, .07) 0%, transparent 50%);
  pointer-events: none;
}

/* Diagonal accent */
.hero::after {
  content: '';
  position: absolute;
  right: -8%;
  top: -10%;
  bottom: -10%;
  width: 55%;
  background: rgba(255, 255, 255, .028);
  transform: skewX(-12deg);
  pointer-events: none;
}

/* Floating geometric shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: .06;
  pointer-events: none;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -80px;
  right: 5%;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 5%;
  opacity: .04;
}

.hero-shape-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 38%;
  opacity: .1;
  border-radius: 12px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200, 150, 42, .18);
  border: 1px solid rgba(200, 150, 42, .35);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown .8s ease both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

.hero h1 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: .5rem;
  animation: fadeInUp .9s ease .1s both;
}

.hero h1 span {
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255, 255, 255, .6);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  animation: fadeInUp .9s ease .2s both;
}

.hero-desc {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  animation: fadeInUp .9s ease .3s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp .9s ease .4s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3.5rem;
  animation: fadeInUp .9s ease .5s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .04em;
}

.hero-image-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-frame {
  width: 420px;
  height: 520px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}

.hero-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(12, 30, 61, .85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 150, 42, .3);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-img-badge .icon {
  font-size: 2rem;
}

.hero-img-badge-text strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
}

.hero-img-badge-text span {
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .4);
  font-size: .7rem;
  letter-spacing: .1em;
  animation: bounce 2s ease infinite;
  z-index: 2;
}

.scroll-hint .arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, .3);
  border-bottom: 2px solid rgba(255, 255, 255, .3);
  transform: rotate(45deg);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── ATOUTS ── */
.atouts {
  background: var(--offwhite);
}

.atouts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.atout-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--tr);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.atout-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--tr);
}

.atout-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.atout-card:hover::before {
  transform: scaleX(1);
}

.atout-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  transition: var(--tr);
}

.atout-card:hover .atout-icon {
  background: var(--gold);
}

.atout-card h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: .5rem;
}

.atout-card p {
  font-size: .88rem;
}

/* ── PROGRAMMES (preview) ── */
.programmes-preview {
  background: var(--white);
}

.prog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}

.prog-tab {
  padding: .55rem 1.2rem;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  background: var(--offwhite);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  transition: var(--tr);
  cursor: pointer;
}

.prog-tab.active,
.prog-tab:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.prog-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  transition: var(--tr);
  position: relative;
}

.prog-card:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.prog-cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 50px;
  padding: .28rem .8rem;
  margin-bottom: 1rem;
}

.prog-card h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: .5rem;
  font-size: 1.05rem;
}

.prog-card p {
  font-size: .85rem;
  margin-bottom: 1.2rem;
}

.prog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prog-duration {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.prog-link {
  margin-left: auto;
  font-size: .8rem;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: var(--tr);
}

.prog-link:hover {
  color: var(--gold);
  gap: .5rem;
}

.prog-cta-row {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── STATS ── */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(200, 150, 42, .13) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: .4rem;
  display: block;
}

.stat-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  align-self: stretch;
  margin: 1rem 0;
}

/* ── TÉMOIGNAGES ── */
.testimonials {
  background: var(--offwhite);
  overflow: hidden;
}

.slider-wrap {
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  gap: 1.5rem;
}

.testimonial-card {
  min-width: calc(33.333% - 1rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1.5px solid var(--border);
  position: relative;
  flex-shrink: 0;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-pale);
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: .85rem;
}

.testimonial-card p {
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: .88rem;
}

.testimonial-author span {
  font-size: .75rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--tr);
  color: var(--navy);
}

.slider-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.slider-dots {
  display: flex;
  gap: .5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--tr);
  cursor: pointer;
  border: none;
}

.slider-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #0a1828 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200, 150, 42, .15) 0%, transparent 65%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 2.25rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── FOOTER ── */
.footer {
  background: #060f1e;
  color: rgba(255, 255, 255, .65);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-area {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-area img {
  height: 46px;
  border-radius: 6px;
}

.footer-brand .logo-area strong {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
  transition: var(--tr);
  border: 1px solid rgba(255, 255, 255, .1);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.footer-col h5 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  font-size: .86rem;
  transition: var(--tr);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: .3rem;
}

.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .9rem;
  font-size: .86rem;
}

.footer-contact-item .ic {
  color: var(--gold);
  margin-top: .15rem;
}

.footer-newsletter input {
  width: 100%;
  padding: .7rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  font-family: inherit;
  font-size: .88rem;
  outline: none;
  transition: var(--tr);
  margin-bottom: .6rem;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.footer-newsletter input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .1);
}

.footer-newsletter .btn {
  width: 100%;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  transition: var(--tr);
  animation: fadeInUp .6s ease 1s both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
}


/* ── WHATSAPP FLOAT ── */
.login-float {
  position: fixed;
  bottom: 5rem;
  right: 1.25rem;
  z-index: 900;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #b5831e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 20px #b5831eb4;
  transition: var(--tr);
  animation: fadeInUp .6s ease 1s both;
}

.login-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
}


/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(145deg, #081426 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(200, 150, 42, .12) 0%, transparent 60%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: .75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .3);
}

/* ── UTILITIES ── */
.gold {
  color: var(--gold);
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.gap-1 {
  gap: 1rem;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

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

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

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

  .hero-image-col {
    display: none;
  }

  .navbar-nav {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .testimonial-card {
    min-width: calc(100% - 0px);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

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

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

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

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

  .hero-stats {
    gap: 1rem;
  }

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