/* =========================================================
   EXORA TECHNOLOGIE — STYLE.CSS PRO (Version Fusionnée)
   Structure PRO, lisible, optimisée, sans doublons
   ========================================================= */

/* ===========================
   VARIABLES GLOBALES
   =========================== */
:root {
  --bg: #0a0f1a;
  --panel: #0d1422;
  --line: #1b2a44;
  --text: #e0e6f0;
  --muted: #8ea7d1;
  --brand: #76a9ff;
  --brand-2: #2a4fb8;

  /* Effets premium */
  --glow-soft: rgba(118,169,255,0.15);
  --glow-strong: rgba(118,169,255,0.55);
}

/* ===========================
   BASE
   =========================== */
* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a { color: var(--brand); text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   HEADER (Fusion PRO)
   =========================== */
.site-header {
  background: rgba(13,20,34,0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(118,169,255,0.15);
  position: sticky;
  top: 0;
  z-index: 20;
  transition: padding .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.shrink {
  padding: 6px 0;
  background: rgba(13,20,34,0.92);
  border-bottom: 1px solid rgba(118,169,255,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  height: 58px;
  width: auto;
  display: block;
  transition: height .25s ease;
}

.site-header.shrink .logo {
  height: 46px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  opacity: 0.9;
  padding: 6px 4px;
  position: relative;
  transition: color .3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: width .3s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--brand);
  text-shadow: 0 0 6px rgba(118,169,255,0.6);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* ===========================
   HERO PREMIUM
   =========================== */
.hero {
  padding: 100px 0 120px;
  background: radial-gradient(circle at center, rgba(118,169,255,0.15), transparent 70%);
  border-bottom: 1px solid rgba(118,169,255,0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(118,169,255,0.25), transparent 70%);
  filter: blur(80px);
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(118,169,255,0.25), transparent 70%);
  filter: blur(80px);
  opacity: 0.6;
  animation: haloPulse 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes haloPulse {
  0% { opacity: 0.45; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.75; transform: translate(-50%, -50%) scale(1.15); }
  100% { opacity: 0.45; transform: translate(-50%, -50%) scale(1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo {
  width: 360px;
  max-width: 85vw;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(118,169,255,0.3);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.hero h1 {
  font-size: 36px;
  margin-top: 20px;
  color: var(--text);
  text-shadow: 0 0 12px rgba(118,169,255,0.4);
  opacity: 0;
  animation: fadeUp 1.4s ease forwards;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===========================
   TITRES PREMIUM
   =========================== */
.page-title {
  text-align: center;
  margin: 40px 0 50px;
  font-size: 32px;
  color: var(--brand);
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(118,169,255,0.4);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  animation: fadeTitle 1s ease forwards;
}

.page-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(118,169,255,0.6);
  animation: underlineGrow 1.2s ease forwards;
}

@keyframes fadeTitle {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes underlineGrow {
  0% { width: 0%; }
  100% { width: 60%; }
}

/* ===========================
   BOUTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: var(--brand-2);
  color: #fff;
  transition: filter .3s ease;
}

.btn.primary:hover {
  filter: brightness(1.1);
}

.btn-cta {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: var(--brand-2);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(118,169,255,0.25);
  transition: 0.3s ease;
  position: relative;
  z-index: 3;
}

.btn-cta:hover {
  background: #2649b8;
  box-shadow: 0 0 18px rgba(118,169,255,0.45), 0 0 28px rgba(118,169,255,0.35);
  transform: translateY(-3px);
}

/* =========================================================
   IMAGES PREMIUM (Glow dynamique + Zoom dynamique)
   ========================================================= */

/* Glow doux au repos + transition premium */
img {
  transition: transform .35s ease, filter .35s ease, opacity .35s ease;
  transform: scale(1);
  filter: drop-shadow(0 0 6px rgba(118,169,255,0.15));
}

/* Glow fort + zoom dynamique au hover */
img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 14px rgba(118,169,255,0.45));
  opacity: 1;
}

/* Image pleine largeur (À propos) */
.image-full {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: block;

  /* Glow doux autour de l’image */
  box-shadow: 0 0 40px rgba(118,169,255,0.25);
}


/* Note interne : .image-full utilise le même système de glow dynamique */


/* =========================================================
   CARTES DE SERVICES (Fusion PRO)
   ========================================================= */

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  overflow: hidden;

  /* ✔️ Correction : visibles par défaut */
  opacity: 1;
  transform: none;

  /* Glow subtil permanent */
  box-shadow: 0 0 12px rgba(118,169,255,0.05);

  transition: opacity 0.9s ease, transform 0.9s ease, box-shadow .3s ease, border-color .3s ease;
}


.card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Halo dynamique piloté par JS */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(118,169,255,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

/* Halo animé subtil */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(118,169,255,0.12), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

/* Hover premium (zoom léger + glow fort + translation) */
.card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--brand);
  box-shadow: 0 0 12px rgba(118,169,255,0.4), 0 0 24px rgba(118,169,255,0.25);
}

/* Titres des cartes */
.card h3 {
  margin: 0 0 12px;
  color: var(--brand);
  position: relative;
  padding-left: 14px;
}

.card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 20px;
  background: var(--brand);
  border-radius: 2px;
}

/* Soulignement animé */
.card h3::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: width .3s ease;
}

.card:hover h3::after {
  width: 60%;
}


/* =========================================================
   GRILLES (Fusion PRO)
   ========================================================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.cards .card img,
.card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
}

/* Grille 2 colonnes */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 60px;
}

@media (min-width: 820px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Grille catégories (2x2) */
.categories-grid .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.categories-grid .card {
  height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.categories-grid .card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: opacity .3s ease, transform .3s ease;
}

.categories-grid .card:hover img {
  opacity: 0.55;
  transform: scale(1.06);
}

.categories-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(118,169,255,0.35);
}

.categories-grid .card h3 {
  position: relative;
  z-index: 2;
  font-size: 22px;
  color: #fff;
  text-shadow: 0 0 12px rgba(118,169,255,0.6);
}
/* Halo premium derrière la grille de services */
.cards {
  position: relative;
}

.cards::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(118,169,255,0.15), transparent 70%);
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
}

/* =========================================================
   SÉPARATEURS & ANIMATIONS DE SECTIONS
   ========================================================= */

.section-sep {
  position: relative;
  height: 2px;
  margin: 60px 0;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.7;
  overflow: hidden;
}

.section-sep::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(118,169,255,0.8), transparent);
  animation: sepGlow 3s linear infinite;
  filter: blur(4px);
}

@keyframes sepGlow {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* Apparition progressive — version corrigée */
.reveal {
  opacity: 1;          /* ✔️ visible par défaut */
  transform: none;     /* ✔️ pas de décalage */
  transition: opacity .5s ease, transform .5s ease;
}


.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Animation premium des sections — version corrigée */
.section {
  opacity: 1;          /* ✔️ visible par défaut */
  transform: none;     /* ✔️ pas de décalage */
  transition: opacity .8s ease, transform .8s ease;
}


.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   FOOTER PREMIUM — VERSION EXORA HARMONISÉE
   ========================================================= */

.footer-premium {
  background: linear-gradient(180deg, #05070d 0%, #0a0f1a 100%);
  padding: 70px 0 40px;
  color: #d0d8e8;
  border-top: 1px solid rgba(118,169,255,0.15);
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(circle, rgba(118,169,255,0.25), transparent 70%);
  filter: blur(60px);
  opacity: 0.6;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(118,169,255,0.4));
}

.footer-slogan {
  font-size: 1rem;
  opacity: 0.85;
}

.footer-premium h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
}

.footer-premium h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #76a9ff;
  border-radius: 2px;
}

.footer-premium ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-premium ul li {
  margin-bottom: 10px;
}

.footer-premium ul li a {
  color: #d0d8e8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-premium ul li a:hover {
  color: #76a9ff;
  text-shadow: 0 0 6px rgba(118,169,255,0.6);
}

.footer-about p {
  margin-bottom: 10px;
  opacity: 0.85;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* =========================================================
   FORMULAIRES
   ========================================================= */

.form input,
.form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #0b1322;
  color: var(--text);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(118,169,255,0.15);
}

.form label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  margin-bottom: 6px;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(224,230,240,0.45);
}

.form .btn.primary {
  margin-top: 14px;
  padding: 10px 20px;
}

.contact-form-card {
  padding: 22px 22px 18px;
}


/* =========================================================
   PAGE CONTACT
   ========================================================= */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: var(--text);
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.25);
}

.contact-list a:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.ci {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  border-radius: 6px;
  background: rgba(118,169,255,0.15);
  box-shadow: 0 0 0 1px rgba(118,169,255,0.25) inset;
}

/* =========================================================
   UTILITAIRES PREMIUM (Back to top, Scroll progress, Scanline)
   ========================================================= */

/* Bouton Retour en Haut */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  background: rgba(118,169,255,0.15);
  border: 1px solid rgba(118,169,255,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(118,169,255,0.25);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, transform .3s ease, visibility .4s;
  z-index: 50;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(118,169,255,0.45), 0 0 28px rgba(118,169,255,0.35);
  background: rgba(118,169,255,0.25);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Barre de progression de scroll */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #76a9ff, #4da3ff);
  box-shadow: 0 0 12px rgba(118,169,255,0.6);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Effet Scanline futuriste */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 2px,
    transparent 4px
  );
  animation: scanlineMove 8s linear infinite;
  z-index: 2;
}

@keyframes scanlineMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}


/* =========================================================
   MEDIA QUERIES (Regroupées PRO)
   ========================================================= */

/* Grille cartes */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Grille catégories */
@media (max-width: 700px) {
  .categories-grid .cards {
    grid-template-columns: 1fr;
  }
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Hero responsive */
@media (max-width: 700px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-logo {
    width: 260px;
  }
}

/* Header responsive */
@media (max-width: 700px) {
  .nav {
    gap: 12px;
    justify-content: center;
  }
}

/* Section : Footer – Mention de marque déposée */
.trademark-note {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

/* ===== Badges de disponibilité — Version Premium Exora ===== */
.service-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  z-index: 5;
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
  text-shadow: 0 0 6px rgba(0,0,0,0.4);
  transition: 0.3s ease;
}

.service-status.disponible {
  background: rgba(0, 200, 110, 0.35);
  border-color: rgba(0, 200, 110, 0.25);
  box-shadow: 0 0 14px rgba(0, 200, 110, 0.35);
}

.service-status.vacances {
  background: rgba(255, 120, 60, 0.35);
  border-color: rgba(255, 120, 60, 0.25);
  box-shadow: 0 0 14px rgba(255, 120, 60, 0.35);
}

.service-status.indisponible {
  background: rgba(200, 0, 0, 0.35);
  border-color: rgba(200, 0, 0, 0.25);
  box-shadow: 0 0 14px rgba(200, 0, 0, 0.35);
  color: #fff;
}



/* Hover subtil (optionnel) */
.card:hover .service-status {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(118,169,255,0.35);
}


/* =========================================================
   PAGE VACANCES — Effets & Mise en page
   ========================================================= */

.sun-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 200, 80, 0.55),
    rgba(255, 150, 0, 0.25),
    transparent 70%
  );
  filter: blur(45px);
  border-radius: 50%;
  z-index: 0;
}

.vacances-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(0, 150, 255, 0.25);
  text-align: center;
}

/* ===========================
   PAGE VACANCES — VERSION PREMIUM EXORA
   =========================== */

.vacances-hero {
  position: relative;
  min-height: 80vh;
  background: url('images/exora-bg.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

.vacances-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}

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

.vacances-content h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  color: #d9e8ff;
  font-weight: 600;
}

.vacances-content p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 35px;
}

.countdown-global {
  font-size: 1.8rem;
  font-weight: 600;
  color: #7ab8ff;
  background: rgba(255, 255, 255, 0.08);
  padding: 15px 25px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

/* ===========================
   HERO ACCUEIL — EXORA PREMIUM
   =========================== */

.hero-exora {
  position: relative;
  padding: 120px 20px 140px;
  background: url('images/exora-bg.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10,15,26,0.3), rgba(10,15,26,0.9));
  backdrop-filter: blur(4px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-logo {
  width: 260px;
  max-width: 80vw;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(118,169,255,0.45);
  margin-bottom: 20px;
}

.hero-exora h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  text-shadow: 0 0 14px rgba(118,169,255,0.6);
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
  color: var(--muted);
}

/* Halo animé derrière le contenu */
.hero-exora::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(118,169,255,0.35), transparent 70%);
  filter: blur(80px);
  opacity: 0.7;
  animation: haloPulse 7s ease-in-out infinite;
}

/* Effet verre dépoli premium sur les cartes */
.card {
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.03);
}

/* ===========================
   HERO À PROPOS — EXORA PREMIUM
   =========================== */



.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10,15,26,0.4), rgba(10,15,26,0.9));
  backdrop-filter: blur(4px);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: 10px;
  opacity: 0.9;
}

/* Halo premium derrière l’image */
.about-image::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(circle, rgba(118,169,255,0.15), transparent 70%);
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
}

/* Espace fluide avant la première carte */
.about-image + .card {
  margin-top: 60px;
}

/* ===========================
   À PROPOS — VERSION FINALE PREMIUM
   =========================== */

/* Hero À propos */
.about-hero {
  position: relative;
  padding: 120px 20px 180px; /* espace pour l’image */
  background: url('images/exora-bg.jpg') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10,15,26,0.4), rgba(10,15,26,0.9));
  backdrop-filter: blur(4px);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-top: 10px;
  opacity: 0.9;
}

/* Image qui chevauche le hero */
.about-image {
  margin-top: -80px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(118,169,255,0.25);
  position: relative;
  z-index: 3;
}

/* Halo premium sous l’image */
.about-image::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(circle, rgba(118,169,255,0.15), transparent 70%);
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
}

/* Espace fluide avant la première carte */
.about-image + .card {
  margin-top: 60px;
}

/* ===== Service indisponible — Version Premium Exora ===== */

.service-status.indisponible {
  background: rgba(200, 0, 0, 0.35);
  border-color: rgba(200, 0, 0, 0.25);
  box-shadow: 0 0 14px rgba(200, 0, 0, 0.35);
  color: #fff;
}

/* Carte grisée + désactivée */
.card.indispo {
  filter: grayscale(70%);
  opacity: 0.45;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--line) !important;
}

.card.indispo:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Désactive totalement les liens des services indisponibles */
.card-link.indispo {
  pointer-events: none;
  cursor: not-allowed;
}

.legal-horizontal {
  grid-column: 1 / -1; /* prend toute la largeur du footer */
  text-align: center;
  margin-top: 20px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.legal-horizontal a {
  color: #d0d8e8;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s ease;
}

.legal-horizontal a:hover {
  color: var(--brand);
  text-shadow: 0 0 6px rgba(118,169,255,0.6);
}

.legal-horizontal span {
  color: #6f7a90;
  margin: 0 6px;
}

/* =========================================================
   FORMULAIRE CONTACT — ULTRA PREMIUM EXORA (Glass + Halo)
   ========================================================= */

.contact-form-card {
  padding: 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(118,169,255,0.18);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    0 0 22px rgba(118,169,255,0.18),
    0 0 45px rgba(118,169,255,0.12),
    inset 0 0 18px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

/* Halo animé derrière le formulaire */
.contact-form-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(118,169,255,0.25), transparent 70%);
  filter: blur(80px);
  opacity: 0.55;
  animation: formHalo 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes formHalo {
  0% { transform: translate(0,0) scale(1); opacity: 0.45; }
  50% { transform: translate(40px,40px) scale(1.15); opacity: 0.75; }
  100% { transform: translate(0,0) scale(1); opacity: 0.45; }
}

/* Labels */
.contact-form-card .form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

/* Champs */
.contact-form-card .form input,
.contact-form-card .form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid rgba(118,169,255,0.25);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 15px;
  transition: 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(4px);
}

/* Focus premium */
.contact-form-card .form input:focus,
.contact-form-card .form textarea:focus {
  border-color: var(--brand);
  background: rgba(255,255,255,0.12);
  outline: none;
  box-shadow:
    0 0 12px rgba(118,169,255,0.45),
    0 0 22px rgba(118,169,255,0.25);
}

/* Placeholder */
.contact-form-card .form input::placeholder,
.contact-form-card .form textarea::placeholder {
  color: rgba(224,230,240,0.45);
}

/* Consentement RGPD */
.checkbox-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-consent input {
  width: 20px;
  height: 20px;
  accent-color: var(--brand);
  filter: drop-shadow(0 0 6px rgba(118,169,255,0.45));
}

/* Message d’erreur */
.form-error {
  color: #ff4d4d;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(255,0,0,0.4);
}

/* Bouton ULTRA PREMIUM */
.btn.primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  transition: 0.3s ease;
  width: 100%;
  text-align: center;
  box-shadow:
    0 0 12px rgba(118,169,255,0.35),
    inset 0 0 12px rgba(255,255,255,0.05);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #3a63d8, #7ab0ff);
  box-shadow:
    0 0 18px rgba(118,169,255,0.55),
    0 0 28px rgba(118,169,255,0.35);
  transform: translateY(-3px);
}

/* Animation d’apparition premium */
.contact-form-card {
  opacity: 0;
  transform: translateY(20px);
  animation: formAppear 0.9s ease forwards;
}

@keyframes formAppear {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .contact-form-card {
    padding: 20px;
    border-radius: 14px;
  }
}

/* =========================================================
   FORMULAIRE — VERSION ORIGINALE (simple, propre)
   ========================================================= */

.form input,
.form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #0b1322;
  color: var(--text);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(118,169,255,0.15);
}

.form label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  margin-bottom: 6px;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(224,230,240,0.45);
}

.form .btn.primary {
  margin-top: 14px;
  padding: 10px 20px;
}

.contact-form-card {
  padding: 22px 22px 18px;
}
