/* ============================================= */
/*            AHAVA NOVA — STYLES               */
/*     Mobile-First | Premium Design            */
/* ============================================= */

/* ========================= */
/* 🎨 VARIABLES & PALETTE    */
/* ========================= */
:root {
  /* Bleus principaux */
  --navy-darkest: #020B1A;
  --navy-darker: #041022;
  --navy-dark: #050F1F;
  --navy-deep: #06152E;
  --navy: #081B3A;
  --navy-mid: #0A1F44;
  --navy-blue: #0C2C5A;
  --navy-bright: #0D2A5C;
  --blue-royal: #123A7A;
  --blue-mid: #123F73;
  --blue-vivid: #1F5FBF;
  --blue-accent: #2FA4FF;
  --blue-light: #6ED3FF;

  /* Blancs & Lumière */
  --white: #FFFFFF;
  --ice-lightest: #EAF6FF;
  --ice-light: #D6EEFF;
  --ice: #CDEAFF;
  --ice-mid: #BFE9FF;
  --ice-blue: #A8E4FF;
  --ice-vivid: #7FD8FF;

  /* Bleus intermédiaires */
  --blue-inter-dark: #0B254F;
  --blue-inter: #0E2F66;
  --blue-inter-mid: #154A8A;
  --blue-inter-light: #1A5FA3;

  /* Couleurs secondaires */
  --gold: #FFD54F;
  --green: #4CAF50;
  --cyan: #00ACC1;

  /* Typographie */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Espacements */
  --section-padding: 60px 20px;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-mid: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/* ========================= */
/* 🔄 RESET & BASE           */
/* ========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-darkest);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================= */
/* ✨ ANIMATIONS KEYFRAMES   */
/* ========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(47, 164, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(47, 164, 255, 0.6), 0 0 60px rgba(47, 164, 255, 0.2);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========================= */
/* 🧭 NAVBAR                 */
/* ========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all var(--transition-fast);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(2, 11, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  background: none;
  border: none;
  outline: none;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(47, 164, 255, 0.2));
}

.navbar-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  filter: drop-shadow(0 0 12px rgba(47, 164, 255, 0.15));
}

.navbar-logo .logo-ahava {
  font-weight: 300;
  font-size: 0.85em;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--ice-lightest);
}

.navbar-logo .logo-nova {
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--blue-accent) 0%, var(--blue-light) 50%, var(--ice-vivid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.navbar-logo .logo-nova::after {
  content: '✦';
  position: absolute;
  top: -4px;
  right: -14px;
  font-size: 0.4em;
  background: linear-gradient(135deg, var(--blue-accent), var(--ice-vivid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: starTwinkle 2s ease-in-out infinite;
}

.nav-links {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(2, 11, 26, 0.98);
  backdrop-filter: blur(20px);
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 999;
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ice-light);
  position: relative;
  padding: 5px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-vivid));
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white) !important;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 164, 255, 0.4);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================= */
/* 🌟 HERO SECTION           */
/* ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-darkest) 0%, var(--navy-deep) 40%, var(--navy-mid) 100%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(2, 11, 26, 0.4) 70%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 20px;
  padding-bottom: 80px;
  max-width: 800px;
}

.hero-logo {
  width: 200px;
  margin: 40px auto 30px;
  animation: scaleIn 1s ease forwards;
  filter: drop-shadow(0 0 30px rgba(47, 164, 255, 0.3));
  mix-blend-mode: lighten;
  border: none;
  outline: none;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ice-light);
  margin-bottom: 15px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ice-blue);
  margin-bottom: 35px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--blue-accent);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-vivid));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(47, 164, 255, 0.4);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  color: var(--ice-light);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1.5px solid rgba(47, 164, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(47, 164, 255, 0.1);
  border-color: var(--blue-accent);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: float 2s ease-in-out infinite;
  display: none;
}

.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(47, 164, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--blue-accent);
  border-radius: 2px;
  animation: fadeInDown 1.5s ease-in-out infinite;
}

/* ========================= */
/* 📜 SECTIONS COMMUNES      */
/* ========================= */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background: var(--navy-darkest);
}

.section-gradient {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue-accent);
  margin-bottom: 12px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--blue-accent);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 15px;
}

.section-title span {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1rem;
  color: var(--ice-blue);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================= */
/* 💡 PHILOSOPHIE SECTION    */
/* ========================= */
.philosophy {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-darker) 100%);
}

.philosophy-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.philosophy-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ice-light);
  line-height: 1.8;
  position: relative;
  padding: 0 20px;
}

.philosophy-quote blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--blue-accent);
  position: absolute;
  top: -20px;
  left: -5px;
  opacity: 0.4;
  font-family: Georgia, serif;
}

.philosophy-quote .quote-highlight {
  color: var(--blue-accent);
  font-weight: 600;
  font-style: normal;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pillar-card {
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.6), rgba(6, 21, 46, 0.8));
  border: 1px solid rgba(47, 164, 255, 0.1);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 164, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(47, 164, 255, 0.15), rgba(110, 211, 255, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--ice-blue);
  line-height: 1.6;
}

/* ========================= */
/* 🧹 SERVICES GRID          */
/* ========================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(135deg, rgba(11, 37, 79, 0.5), rgba(6, 21, 46, 0.7));
  border: 1px solid rgba(47, 164, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all var(--transition-fast);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(47, 164, 255, 0.03), transparent);
  transition: left 0.6s;
}

.service-card:hover::after {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 164, 255, 0.2);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(47, 164, 255, 0.12), rgba(110, 211, 255, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* Image d'illustration en haut de carte, fondue dans le fond (masque dégradé) */
.service-media {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
  -webkit-mask-image: linear-gradient(180deg, #000 58%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 58%, transparent 100%);
  transform-origin: center top;
  transition: transform 0.5s ease;
}

.service-card .service-media {
  margin: -28px -24px 16px;
  border-radius: 16px 16px 0 0;
}

.service-detail-card .service-media {
  margin: -35px -28px 18px;
  border-radius: 20px 20px 0 0;
}

.service-card:hover .service-media,
.service-detail-card:hover .service-media {
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--ice-blue);
  line-height: 1.6;
}

/* ========================= */
/* 📢 CTA BANNER             */
/* ========================= */
.cta-banner {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--blue-royal) 0%, var(--navy-blue) 50%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(47, 164, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  font-size: 1rem;
  color: var(--ice-light);
  margin-bottom: 30px;
  position: relative;
}

.cta-banner .btn-primary {
  position: relative;
  animation: glow 3s ease-in-out infinite;
}

/* ========================= */
/* 📝 ABOUT PAGE             */
/* ========================= */
.page-hero {
  padding: 140px 20px 60px;
  background: linear-gradient(180deg, var(--navy-darkest) 0%, var(--navy-deep) 100%);
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--ice-blue);
  max-width: 550px;
  margin: 0 auto;
}

.about-story {
  max-width: 800px;
  margin: 0 auto;
}

.about-story h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.about-story h2 span {
  color: var(--blue-accent);
}

.about-story p {
  font-size: 1rem;
  color: var(--ice-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-name-meaning {
  background: linear-gradient(135deg, rgba(18, 58, 122, 0.3), rgba(11, 37, 79, 0.5));
  border: 1px solid rgba(47, 164, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
}

.about-name-meaning .ahava-word {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.about-name-meaning .ahava-meaning {
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 15px;
}

.about-name-meaning p {
  font-size: 0.95rem;
  color: var(--ice-blue);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.value-card {
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.5), rgba(6, 21, 46, 0.7));
  border: 1px solid rgba(47, 164, 255, 0.1);
  border-radius: 14px;
  padding: 25px;
  transition: all var(--transition-fast);
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 164, 255, 0.2);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--ice-blue);
  line-height: 1.6;
}

/* Zone d'intervention */
.zone-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.zone-badge {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, rgba(47, 164, 255, 0.15), rgba(110, 211, 255, 0.08));
  border: 1px solid rgba(47, 164, 255, 0.2);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue-accent);
  margin-bottom: 20px;
}

.zone-badge svg {
  display: inline;
  vertical-align: middle;
  margin-right: 8px;
}

.zone-section p {
  font-size: 0.95rem;
  color: var(--ice-blue);
  line-height: 1.7;
}

/* ========================= */
/* 📞 CONTACT PAGE           */
/* ========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(11, 37, 79, 0.5), rgba(6, 21, 46, 0.7));
  border: 1px solid rgba(47, 164, 255, 0.1);
  border-radius: 20px;
  padding: 30px 25px;
}

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ice-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(2, 11, 26, 0.6);
  border: 1px solid rgba(47, 164, 255, 0.15);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(168, 228, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 15px rgba(47, 164, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%232FA4FF'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--navy-dark);
  color: var(--white);
}

.form-submit {
  width: 100%;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: linear-gradient(135deg, rgba(11, 37, 79, 0.4), rgba(6, 21, 46, 0.6));
  border: 1px solid rgba(47, 164, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  border-color: rgba(47, 164, 255, 0.2);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(47, 164, 255, 0.12), rgba(110, 211, 255, 0.08));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Le bloc texte de la carte occupe toute la largeur dispo
   (sinon, en "space-between", jour et horaire se collent) */
.contact-info-card > div:last-child {
  flex: 1;
  min-width: 0;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--ice-blue);
  line-height: 1.5;
}

.contact-info-card a {
  color: var(--blue-accent);
}

.contact-info-card a:hover {
  color: var(--blue-light);
}

/* Contact Map */
.contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(47, 164, 255, 0.1);
  background: linear-gradient(135deg, rgba(11, 37, 79, 0.4), rgba(6, 21, 46, 0.6));
  transition: all var(--transition-fast);
}

.contact-map-wrapper:hover {
  border-color: rgba(47, 164, 255, 0.25);
  box-shadow: 0 8px 30px rgba(47, 164, 255, 0.08);
}

.contact-map-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ice-light);
  letter-spacing: 0.3px;
}

.contact-map-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  filter: saturate(0.3) brightness(0.55) contrast(1.2) hue-rotate(190deg);
  transition: filter 0.5s ease;
}

.contact-map-wrapper:hover .contact-map-container iframe {
  filter: saturate(0.5) brightness(0.65) contrast(1.15) hue-rotate(190deg);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(47, 164, 255, 0.1), rgba(110, 211, 255, 0.06));
  border: 1px solid rgba(47, 164, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: rgba(47, 164, 255, 0.2);
  border-color: var(--blue-accent);
  transform: translateY(-3px);
}

/* ========================= */
/* 🦶 FOOTER                 */
/* ========================= */
.footer {
  background: var(--navy-darkest);
  border-top: 1px solid rgba(47, 164, 255, 0.08);
  padding: 50px 20px 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--white), var(--blue-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--ice-blue);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--ice-blue);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--blue-accent);
}

.footer-contact p {
  font-size: 0.88rem;
  color: var(--ice-blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(47, 164, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(168, 228, 255, 0.5);
}

/* ========================= */
/* 💬 WHATSAPP FLOAT          */
/* ========================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ========================= */
/* 🖥️ RESPONSIVE — TABLET    */
/* ========================= */
@media (min-width: 600px) {
  .section-title {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-logo {
    width: 250px;
  }

  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .hero-scroll {
    display: block;
  }

  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }
}

/* ========================= */
/* 🖥️ RESPONSIVE — DESKTOP   */
/* ========================= */
@media (min-width: 992px) {
  :root {
    --section-padding: 100px 40px;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .hero-tagline {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-logo {
    width: 280px;
  }

  /* Desktop nav */
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    gap: 30px;
    align-items: center;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }

  .philosophy {
    padding: 100px 40px;
  }

  .philosophy-quote blockquote {
    font-size: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ========================= */
/* 🖥️ RESPONSIVE — LARGE     */
/* ========================= */
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .hero-tagline {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .services-grid.full-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================= */
/* 🔧 UTILITIES               */
/* ========================= */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* Page transition */
.page-transition {
  animation: fadeIn 0.5s ease forwards;
}

/* Loading screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.loader::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(47, 164, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.loader-glow-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1.5px solid rgba(47, 164, 255, 0.1);
  animation: loaderRingSpin 3s linear infinite, loaderRingGlow 2s ease-in-out infinite;
}

.loader-glow-ring::before {
  content: '';
  position: absolute;
  top: -1.5px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--blue-accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--blue-accent), 0 0 30px rgba(47, 164, 255, 0.4);
}

.loader-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  position: relative;
  animation: loaderBrandReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform: translateY(15px);
}

.loader-ahava {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--ice-lightest);
  animation: loaderTextShimmer 2.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

.loader-nova {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--blue-accent) 0%, var(--blue-light) 40%, var(--ice-vivid) 70%, var(--white) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loaderBrandReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             loaderGradientShift 3s ease-in-out infinite;
  animation-delay: 0.5s, 1.4s;
  opacity: 0;
  transform: translateY(15px);
}

.loader-star {
  font-size: 1rem;
  animation: loaderStarAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             starTwinkle 1.5s ease-in-out infinite;
  animation-delay: 0.9s, 1.6s;
  opacity: 0;
  transform: scale(0) rotate(-20deg);
  filter: drop-shadow(0 0 8px rgba(47, 164, 255, 0.6));
}

.loader-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-accent), var(--blue-light), transparent);
  margin: 16px 0 14px;
  border-radius: 2px;
  animation: loaderLineExpand 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.1s;
}

.loader-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(214, 238, 255, 0.5);
  animation: loaderBrandReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.4s;
  opacity: 0;
  transform: translateY(10px);
}

@keyframes loaderBrandReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderStarAppear {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes loaderLineExpand {
  to {
    width: 80px;
  }
}

@keyframes loaderRingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderRingGlow {
  0%, 100% { border-color: rgba(47, 164, 255, 0.08); }
  50% { border-color: rgba(47, 164, 255, 0.2); }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}

@keyframes loaderGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes loaderTextShimmer {
  0%, 100% { color: var(--ice-lightest); }
  50% { color: rgba(214, 238, 255, 0.6); }
}

/* Divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  margin: 0 auto;
  border-radius: 2px;
}

/* Services page - detail cards */
.service-detail-card {
  background: linear-gradient(135deg, rgba(11, 37, 79, 0.5), rgba(6, 21, 46, 0.7));
  border: 1px solid rgba(47, 164, 255, 0.08);
  border-radius: 20px;
  padding: 35px 28px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 164, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(47, 164, 255, 0.15), rgba(110, 211, 255, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-detail-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-detail-card p {
  font-size: 0.92rem;
  color: var(--ice-blue);
  line-height: 1.7;
}

.service-detail-card ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail-card ul li {
  font-size: 0.88rem;
  color: var(--ice-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-detail-card ul li::before {
  content: '✦';
  color: var(--blue-accent);
  font-size: 0.7rem;
}

/* ========================= */
/* 🖼️ GALERIE / ÉQUIPEMENTS  */
/* ========================= */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 37, 79, 0.45), rgba(6, 21, 46, 0.65));
  border: 1px solid rgba(47, 164, 255, 0.1);
  border-radius: 24px;
  padding: 18px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.gallery-item:hover {
  border-color: rgba(47, 164, 255, 0.25);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.gallery-media {
  background: linear-gradient(150deg, #ffffff 0%, #e7f1fb 100%);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.gallery-media::before {
  content: '';
  position: absolute;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(47, 164, 255, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.gallery-media img {
  position: relative;
  max-height: 340px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(5, 19, 46, 0.22));
  transition: transform var(--transition-mid);
}

.gallery-item:hover .gallery-media img {
  transform: scale(1.04);
}

/* Variante "photo en contexte" : image entière, sans rognage (fond non blanc) */
.gallery-media--cover {
  background: var(--navy-deep);
  padding: 0;
  min-height: 0;
}

.gallery-media--cover::before {
  display: none;
}

.gallery-media--cover img {
  position: static;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: none;
}

.gallery-text {
  padding: 8px 14px 14px;
}

.gallery-index {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--blue-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gallery-text h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.gallery-text h2 span {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-text p {
  font-size: 0.98rem;
  color: var(--ice-blue);
  line-height: 1.8;
  margin-bottom: 20px;
}

.gallery-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.gallery-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ice-light);
  line-height: 1.5;
}

.gallery-features li::before {
  content: '✦';
  color: var(--blue-accent);
  font-size: 0.8rem;
  margin-top: 3px;
}

/* Desktop : 2 colonnes, alternance gauche/droite */
@media (min-width: 850px) {
  .gallery-item {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 26px;
  }

  .gallery-item:nth-child(even) .gallery-media {
    order: 2;
  }

  .gallery-text {
    padding: 20px;
  }

  .gallery-text h2 {
    font-size: 1.8rem;
  }
}

/* Horaires */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--ice-blue);
  padding: 6px 0;
  border-bottom: 1px solid rgba(47, 164, 255, 0.05);
}

.schedule-item .day {
  font-weight: 500;
  color: var(--ice-light);
}

.schedule-item span:last-child {
  white-space: nowrap;
  text-align: right;
}

.schedule-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--ice-blue);
  line-height: 1.5;
}

.schedule-note strong {
  color: var(--blue-accent);
  font-weight: 600;
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  margin-bottom: 15px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--ice-blue);
}

/* Form error message */
.form-error {
  display: none;
  text-align: center;
  padding: 22px 20px;
  margin-top: 18px;
  background: rgba(255, 107, 107, 0.07);
  border: 1px solid rgba(255, 107, 107, 0.25);
  border-radius: 12px;
}

.form-error.show {
  display: block;
}

.form-error svg {
  margin-bottom: 10px;
}

.form-error p {
  font-size: 0.9rem;
  color: #ffb3b3;
  line-height: 1.6;
}

/* Submit button — état de chargement */
.form-submit:disabled {
  opacity: 0.7;
  cursor: progress;
}

/* Anti-spam honeypot — invisible pour les humains */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
