@charset "UTF-8";
/* ===== VARIABLES CSS ===== */
:root {
  --bleu-nuit: #0c1c3a;
  --bleu-celeste: #00b2e3;
  --or-solaire: #f4c542;
  --blanc: #ffffff;
  --turquoise: #26d3d9;
  --gris-clair: #f5f7fa;
  --gris-moyen: #e8ecf1;
  --violet: #8a2be2;
  --primary-gradient: linear-gradient(
    135deg,
    var(--or-solaire) 0%,
    #e6b120 100%
  );
  --secondary-gradient: linear-gradient(
    90deg,
    var(--or-solaire),
    var(--turquoise)
  );
  --btn-shadow-primary: 0 10px 20px rgba(244, 197, 66, 0.3);
  --btn-shadow-hover: 0 15px 30px rgba(244, 197, 66, 0.5);
  --btn-shine-effect: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  --card-shadow-hover: 0 25px 60px rgba(244, 197, 66, 0.3);
  --card-glow: rgba(0, 178, 227, 0.3);
  --image-overlay: linear-gradient(to top, rgba(10, 15, 31, 0.85), rgba(10, 15, 31, 0));
  --shine-effect: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--blanc);
  background-color: var(--bleu-nuit);
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, #0c1c3a 0%, #0a1530 50%, #081225 100%);
}

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2.5rem;
  background: linear-gradient(to right, var(--blanc), var(--or-solaire));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--or-solaire), var(--turquoise), var(--or-solaire));
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 0px rgba(244, 197, 66, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 5px rgba(244, 197, 66, 0.8)) drop-shadow(0 0 40px rgba(244, 197, 66, 0.3));
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes rotatePyramid {
  0% {
    transform: rotateY(0deg) rotateX(15deg);
  }
  100% {
    transform: rotateY(360deg) rotateX(15deg);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 10px 40px rgba(244, 197, 66, 0.3);
  }
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
}
@keyframes spin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PARTICLES BACKGROUND ===== */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ===== HEADER MODERNE AVEC ANIMATIONS ===== */
:root {
  --header-height: 180px; /* ajuste à l’œil (120–160px selon ton logo) */
}

/* ===== HEADER MODERNE AVEC ANIMATIONS ===== */
header {
  background-color: rgba(12, 28, 58, 0.95);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(0);
}

/* Header caché */
header.hidden {
  transform: translateY(-100%);
}

/* Header transparent en haut de page */
header.transparent {
  background-color: rgba(12, 28, 58, 0.1);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header translucent en scroll */
header.translucent {
  background-color: rgba(12, 28, 58, 0.85);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.logo-symbol {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.logo-symbol:hover {
  transform: scale(1.05);
}

.logo-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.logo-symbol:hover img {
  filter: drop-shadow(0 0 10px rgba(244, 197, 66, 0.8));
}

/* Navigation Desktop */
#mainNav {
  display: flex;
}

#mainNav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

#mainNav ul li {
  margin-left: 35px;
  position: relative;
}

#mainNav ul li a {
  color: var(--blanc);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  font-family: "Lato", sans-serif;
}

#mainNav ul li a:hover {
  color: var(--or-solaire);
}

#mainNav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--or-solaire), var(--turquoise));
  transition: width 0.3s ease;
}

#mainNav ul li a:hover::after {
  width: 100%;
}

/* Bouton Hamburger Animé */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-btn .bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--blanc);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

/* Animation Hamburger → Croix */
.mobile-menu-btn.active .bar:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  background: linear-gradient(90deg, var(--or-solaire), var(--turquoise), var(--or-solaire));
}

.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-btn.active .bar:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  background: var(--or-solaire);
}

/* Navigation Mobile */
#mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(12, 28, 58, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
}

#mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

#mobile-nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

#mobile-nav ul li {
  margin: 25px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

#mobile-nav.active ul li {
  opacity: 1;
  transform: translateY(0);
}

/* Animation séquentielle des liens mobile */
#mobile-nav.active ul li:nth-child(1) {
  transition-delay: 0.1s;
}

#mobile-nav.active ul li:nth-child(2) {
  transition-delay: 0.15s;
}

#mobile-nav.active ul li:nth-child(3) {
  transition-delay: 0.2s;
}

#mobile-nav.active ul li:nth-child(4) {
  transition-delay: 0.25s;
}

#mobile-nav.active ul li:nth-child(5) {
  transition-delay: 0.3s;
}

#mobile-nav.active ul li:nth-child(6) {
  transition-delay: 0.35s;
}

#mobile-nav.active ul li:nth-child(7) {
  transition-delay: 0.4s;
}

#mobile-nav ul li a {
  color: var(--blanc);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Playfair Display", serif;
  transition: all 0.3s ease;
  padding: 10px 20px;
  display: inline-block;
  position: relative;
}

#mobile-nav ul li a:hover {
  color: var(--or-solaire);
  transform: translateX(10px);
}

#mobile-nav ul li a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--or-solaire), var(--turquoise), var(--or-solaire));
  transition: width 0.3s ease;
}

#mobile-nav ul li a:hover::before {
  width: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--blanc);
  text-align: center;
  object-fit: contain;
  object-position: center;
}

.hero {
  height: calc(100vh + var(--header-height));
}

.hero--page {
  height: calc(90vh - var(--header-height));
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero--bg-contact {
  background-image: url("/assets/images/contact.png");
}

.hero--bg-temoignages {
  background-image: url("/assets/images/temoignages.png");
}

.hero--bg-apropos {
  background-image: url("/assets/images/apropos.svg");
}

.hero--bg-vision {
  background-image: url("/assets/images/balance.png");
}

.hero--bg-offres {
  background-image: url("/assets/images/offres.png");
}

.hero--bg-essence {
  background-image: url("/assets/images/essence.svg");
}

.hero--bg-contact,
.hero--bg-temoignages,
.hero--bg-apropos,
.hero--bg-vision,
.hero--bg-offres,
.hero--bg-essence {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-video,
.hero-contact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 28, 58, 0.85) 0%, rgba(12, 28, 58, 0.7) 50%, rgba(0, 178, 227, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, var(--blanc), var(--or-solaire));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.2s both;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  animation: fadeInUp 1s ease 0.4s both;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--or-solaire);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--blanc);
  font-size: 2rem;
}

/* ===== SECTIONS STYLES ===== */
/* Header générique pour les sections */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Playfair Display", sans-serif;
  font-size: 2.6rem;
  margin-bottom: 40px;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--or-solaire), var(--turquoise));
}

.section-subtitle {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  /* opacity: 0.9; */
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-card {
  min-width: 160px;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--or-solaire);
  display: block;
  line-height: 1.1;
}

.stat-card, .stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.cta-panel {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-panel--gradient {
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.1) 0%, rgba(0, 178, 227, 0.1) 100%);
}

.cta-panel .cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-panel h3 {
  color: var(--or-solaire);
  margin-bottom: 15px;
  font-size: 2rem;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.info-section h3 {
  color: var(--or-solaire);
  margin-bottom: 25px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-section h3 i {
  font-size: 1.2rem;
}

.info-section h4 {
  color: var(--turquoise);
}

.info-section a {
  color: var(--blanc);
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.info-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or-solaire);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.testimonial-card {
  padding: 30px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--or-solaire);
  box-shadow: 0 15px 30px rgba(244, 197, 66, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bleu-celeste) 0%, var(--turquoise) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-badge {
  background: rgba(244, 197, 66, 0.2);
  color: var(--or-solaire);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(244, 197, 66, 0.3);
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-metrics {
  display: flex;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-metric {
  text-align: center;
  flex: 1;
}

.testimonial-metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--or-solaire);
  line-height: 1;
}

.testimonial-metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
  color: var(--or-solaire);
  margin-right: 10px;
  width: 20px;
}

/* Présentation Section */
.presentation {
  background: rgba(12, 28, 58, 0.7);
  position: relative;
}

.presentation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(38, 211, 217, 0.1) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(244, 197, 66, 0.1) 0%, transparent 50%);
}

.presentation-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.presentation-text {
  flex: 2;
}

.presentation-image {
  flex: 1;
  text-align: left;
  position: relative;
}

.pyramid-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  perspective: 1000px;
}

.pyramid {
  position: absolute;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: rotatePyramid 20s infinite linear;
  top: 50px;
  left: 50px;
}

.pyramid-face {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid rgba(244, 197, 66, 0.3);
  transform-origin: 50% 0%;
}

.pyramid-face:nth-child(1) {
  transform: rotateY(0deg) rotateX(30deg);
}

.pyramid-face:nth-child(2) {
  transform: rotateY(90deg) rotateX(30deg);
  border-bottom-color: rgba(0, 178, 227, 0.3);
}

.pyramid-face:nth-child(3) {
  transform: rotateY(180deg) rotateX(30deg);
  border-bottom-color: rgba(38, 211, 217, 0.3);
}

.pyramid-face:nth-child(4) {
  transform: rotateY(270deg) rotateX(30deg);
  border-bottom-color: rgba(138, 43, 226, 0.3);
}

.pyramid-base {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotateX(90deg) translateZ(-87px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Galerie Section */
.galerie {
  background: rgba(12, 28, 58, 0.7);
  position: relative;
}

.galerie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 178, 227, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(244, 197, 66, 0.1) 0%, transparent 50%);
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.galerie-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.galerie-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--or-solaire);
}

.galerie-item i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.galerie-content {
  padding: 30px 20px;
  width: 100%;
  text-align: center;
}

.galerie-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--or-solaire);
}

.galerie-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Bordure gauche pour la quote d'intro */
.page-content .quote:first-of-type {
  border-left: 4px solid var(--or-solaire);
}

/* Bordure droite pour la quote finale */
.page-content .quote:last-of-type {
  border-right: 4px solid var(--or-solaire);
}

/* ================================
   🌟 SECTION : NOS OFFRES KaMaât
   ================================ */
.offres-section {
  padding: 100px 10%;
  background-color: rgba(11, 18, 30, 0.816);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.offres-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(244, 197, 66, 0.1) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(38, 211, 217, 0.1) 0%, transparent 50%);
  animation: backgroundShift 20s infinite alternate;
}

.offres-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  text-align: left;
  margin-bottom: 60px;
  position: relative;
}

.offres-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 3px;
}

.offres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* ================================
   🌟 SECTION : VISION & VALEURS
   ================================ */
.vision-section {
  padding: 100px 10%;
  background: linear-gradient(135deg, rgba(12, 28, 58, 0.8) 0%, rgba(138, 43, 226, 0.3) 100%);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(244, 197, 66, 0.1) 0%, transparent 70%);
}

/* .vision-section h2 {
    font-family: "Playfair Display", serif;

    margin-bottom: 40px;
    position: relative;
} */
.vision-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 3px;
}

/* === QUOTES === */
.quote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  max-width: 850px;
  margin: 50px auto;
  padding: 25px 30px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: all 0.4s ease;
  text-align: left;
  animation: pulse 8s infinite;
}

/* Bordure gauche pour la quote d'intro */
.vision-section .quote:first-of-type {
  border-left: 4px solid var(--or-solaire);
}

/* Bordure droite pour la quote finale */
.vision-section .quote:last-of-type {
  border-right: 4px solid var(--or-solaire);
}

/* === GRID === */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* Témoignages Section */
.temoignages {
  background: rgba(12, 28, 58, 0.7);
  position: relative;
}

.temoignages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(0, 178, 227, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(244, 197, 66, 0.1) 0%, transparent 50%);
}

.temoignages-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.temoignages-container {
  display: flex;
  transition: transform 0.5s ease;
}

.temoignage {
  min-width: 100%;
  padding: 50px;
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bleu-celeste) 0%, var(--turquoise) 100%);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.client-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.client-stars {
  color: var(--or-solaire);
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: left;
}

.client-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--blanc);
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-btn:hover {
  background: var(--or-solaire);
  color: var(--bleu-nuit);
  transform: scale(1.1);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, rgba(12, 28, 58, 0.9) 0%, rgba(0, 178, 227, 0.5) 100%);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(244, 197, 66, 0.1) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(38, 211, 217, 0.1) 0%, transparent 50%);
  animation: backgroundShift 20s infinite alternate;
}

.contact-container {
  display: flex;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-info {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
  flex: 1.2;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--blanc);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-icon {
  background: linear-gradient(135deg, var(--or-solaire) 0%, #e6b120 100%);
  color: var(--bleu-nuit);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(244, 197, 66, 0.3);
}

.info-text h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.info-text p {
  margin-bottom: 0;
  opacity: 0.9;
}

/* ===== SECTION ESSENCE KAMAÂT ===== */
.essence-intro p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-align: justify;
}

.essence-duo {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2.5rem 0;
}

.essence-symbol {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.essence-symbol:hover {
  border-color: var(--or-solaire);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(244, 197, 66, 0.25);
}

.essence-symbol h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--or-solaire);
  margin-bottom: 10px;
}

.essence-symbol p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.essence-vision {
  margin-top: 2.5rem;
  text-align: justify;
}

.essence-vision p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.essence-quote {
  margin-top: 3rem;
  font-size: 1.2rem;
  font-style: italic;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 30px;
  border-left: 4px solid var(--or-solaire);
  border-radius: 10px;
  line-height: 1.7;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Bordure gauche pour la quote d'intro */
.presentation-content .quote:first-of-type {
  border-left: 4px solid var(--or-solaire);
}

/* Bordure droite pour la quote finale */
.presentation-content .quote:last-of-type {
  border-right: 4px solid var(--or-solaire);
}

/* ===== CARDS STYLES ===== */
/* ===== STYLES DE BASE DES CARTES ===== */
/* Structure commune à toutes les cartes */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== CARTES OFFRE ===== */
.offre-card {
  justify-content: space-between;
  border-radius: 18px;
}

/* Effets de survol - Offre Card */
.offre-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--card-glow);
  border-color: var(--bleu-celeste);
}

/* Ligne lumineuse supérieure - Offre Card */
.offre-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

/* ===== CARTES VISION ===== */
.vision-card {
  max-height: 500px;
  border-radius: 20px;
}

/* Effets de survol - Vision Card */
.vision-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--or-solaire);
  box-shadow: var(--card-shadow-hover);
}

/* Ligne lumineuse supérieure - Vision Card */
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--or-solaire), var(--turquoise), var(--bleu-celeste));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

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

/* ===== EFFETS COMMUNS ===== */
/* Effet de brillance au survol */
.offre-card::after,
.vision-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: var(--shine-effect);
  transition: left 0.8s ease;
  z-index: 1;
}

.offre-card:hover::after,
.vision-card:hover::after {
  left: 100%;
}

/* ===== SECTIONS IMAGE ===== */
/* Conteneur image commun */
.image-container {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Image Offre */
.offre-image {
  max-height: 350px;
}

/* Image Vision */
.vision-image {
  height: 250px;
  flex-shrink: 0;
}

/* Styles d'image communs */
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Effets de survol sur les images */
.offre-card:hover .offre-image img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.15);
}

.vision-card:hover .vision-image img {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.2);
}

/* Overlay dégradé sur images */
.offre-image::after,
.vision-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.offre-image::after {
  height: 40%;
  background: var(--image-overlay);
}

.vision-image::after {
  height: 50%;
  background: linear-gradient(to top, rgba(11, 19, 36, 0.95), rgba(11, 19, 36, 0));
}

/* ===== SECTIONS CONTENU ===== */
/* Conteneur contenu commun */
.content-container {
  padding: 30px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

/* Contenu Offre */
.offre-content {
  padding: 35px 30px 45px;
  justify-content: space-between;
}

/* Contenu Vision */
.vision-content {
  justify-content: center;
  flex-grow: 1;
}

/* Titres des cartes */
.offre-content h3,
.vision-content h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

/* Titre spécifique Offre */
.offre-content h3 {
  font-size: 1.9rem;
  background: linear-gradient(to right, var(--blanc), var(--or-solaire));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Titre spécifique Vision */
.vision-content h3 {
  font-size: 1.8rem;
  color: var(--or-solaire);
}

/* Paragraphes */
.offre-content p,
.vision-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.offre-content p {
  margin-bottom: 25px;
}

/* ===== ACCESSIBILITÉ ===== */
.card:focus-within {
  outline: 2px solid var(--bleu-celeste);
  outline-offset: 2px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--blanc);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: var(--blanc);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--bleu-celeste);
  box-shadow: 0 0 0 3px rgba(0, 178, 227, 0.2);
}

.form-input.with-icon {
  padding-left: 50px;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 45px;
  color: var(--bleu-celeste);
  font-size: 1.1rem;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  display: none;
  background: rgba(38, 211, 217, 0.1);
  border: 1px solid var(--turquoise);
  color: var(--blanc);
}

/* Ajout des éléments réutilisables issus de contact.css */
.urgency-levels {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.urgency-option {
  flex: 1;
  text-align: center;
}

.urgency-option input {
  display: none;
}

.urgency-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.urgency-label i {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}

.urgency-option input:checked + .urgency-label {
  border-color: var(--or-solaire);
  background: rgba(244, 197, 66, 0.1);
}

.urgency-option input:checked + .urgency-label i {
  color: var(--or-solaire);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
  background: var(--or-solaire);
  border-color: var(--or-solaire);
}

.checkbox-label input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  color: var(--bleu-nuit);
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

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

.form-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Message de succès/erreur réutilisable */
.form-message {
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  display: none;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid #4caf50;
  color: var(--blanc);
}

.form-message i {
  font-size: 2rem;
  color: #4caf50;
  margin-right: 15px;
  float: left;
}

.message-content h4 {
  color: #4caf50;
  margin-bottom: 5px;
}

/* Footer */
footer {
  background-color: rgba(8, 18, 37, 0.95);
  color: var(--blanc);
  padding: 60px 0 30px;
  text-align: center;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(244, 197, 66, 0.1) 0%, transparent 70%);
}

.footer-logo {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.footer-logo-content {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-symbol {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.footer-logo-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.footer-links a {
  color: var(--blanc);
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--or-solaire);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
}

/* ===== BUTTONS STYLES ===== */
/* ===== STYLES DE BASE ===== */
.btn {
  /* Layout */
  display: inline-block;
  position: relative;
  overflow: hidden;
  /* Dimensions */
  padding: 18px 40px;
  border-radius: 50px;
  /* Typographie */
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  /* Couleurs et effets */
  background: var(--primary-gradient);
  color: var(--bleu-nuit);
  border: none;
  box-shadow: var(--btn-shadow-primary);
  /* Animations */
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease 0.4s both;
  cursor: pointer;
}

/* ===== EFFETS INTERACTIFS ===== */
/* Effet au survol */
.btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--btn-shadow-hover);
}

/* Effet de brillance animée */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--btn-shine-effect);
  transition: left 0.5s;
}

.btn:hover::after {
  left: 100%;
}

/* ===== VARIANTES DE BOUTONS ===== */
/* Bouton secondaire - version contour */
.btn-secondary {
  background: transparent;
  color: var(--blanc);
  border: 2px solid var(--blanc);
}

.btn-secondary:hover {
  background: var(--blanc);
  color: var(--bleu-nuit);
  /* Hérite de transform: translateY(-5px) depuis .btn:hover */
}

/* Bouton d'urgence - style compact */
.btn-emergency {
  /* Layout */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Dimensions */
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 10px;
  /* Typographie */
  font-weight: 600;
  text-decoration: none;
  /* Couleurs */
  background: var(--or-solaire);
  color: var(--bleu-nuit);
  /* Animations */
  transition: all 0.3s ease;
}

.btn-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 197, 66, 0.4);
}

/* ===== BOUTONS FORMULAIRES ===== */
/* Bouton principal de formulaire */
.btn-form {
  /* Layout spécifique formulaire */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  /* Dimensions */
  padding: 18px 35px;
  /* Hérite des autres styles de .btn */
}

/* Animation de l'icône dans les boutons formulaire */
.btn-form i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-form:hover i {
  transform: translateX(5px);
}

/* ===== BOUTONS CONTEXTUELS ===== */
/* Boutons dans les sections offres */
.offre-content .btn {
  /* Dimensions */
  padding: 12px 24px;
  border-radius: 8px;
  /* Typographie */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* Style spécifique */
  background: transparent;
  color: var(--or-solaire);
  border: 1px solid var(--or-solaire);
}

.offre-content .btn:hover {
  background: var(--secondary-gradient);
  color: #0a0f1f;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(244, 197, 66, 0.3);
}

/* ===== ÉTATS ACCESSIBILITÉ ===== */
.btn:focus,
.btn-form:focus,
.btn-emergency:focus {
  outline: 2px solid var(--bleu-celeste);
  outline-offset: 2px;
}

.btn:active,
.btn-form:active,
.btn-emergency:active {
  transform: translateY(-2px);
  transition: transform 0.1s ease;
}

/* ===== STYLES SPÉCIFIQUES PAGE À PROPOS ===== */
.apropos-background {
  background: url("/assets/images/me2.png");
  object-fit: contain;
  object-position: center center;
}

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

.hero--page h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--blanc), var(--or-solaire));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-content {
  padding: 80px 0;
  /* background: rgba(12, 28, 58, 0.7); */
}

.apropos-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.apropos-image {
  flex: 0 0 380px;
  position: sticky;
  top: 100px;
  text-align: center;
}

.photo-container {
  width: 100%;
  height: 480px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, rgba(12, 28, 58, 0.9) 0%, rgba(8, 18, 37, 0.9) 100%);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.photo-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.1) 0%, rgba(0, 178, 227, 0.1) 50%, rgba(38, 211, 217, 0.1) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.photo-container::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--or-solaire) 0%, var(--bleu-celeste) 50%, var(--turquoise) 100%);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.photo-container:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 30px rgba(244, 197, 66, 0.3), 0 0 50px rgba(0, 178, 227, 0.2);
}

.photo-container:hover::before {
  opacity: 1;
}

.photo-container:hover::after {
  opacity: 1;
}

.photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: all 0.5s ease;
  filter: brightness(1.05) contrast(1.1);
  position: relative;
  z-index: 0;
}

.photo-container:hover img {
  transform: scale(1.03);
  filter: brightness(1.1) contrast(1.15);
}

.photo-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(244, 197, 66, 0.2) 0%, transparent 50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.photo-container:hover .photo-glow {
  opacity: 1;
}

.inner-frame {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--or-solaire);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s infinite linear;
}

.particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  top: 80%;
  left: 40%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  top: 70%;
  left: 20%;
  animation-delay: 4s;
}

.apropos-text {
  flex: 1;
  min-width: 0;
}

.apropos-text h3 {
  font-family: "Playfair Display", serif;
  color: var(--or-solaire);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
}

.apropos-text h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--or-solaire), var(--turquoise));
  border-radius: 2px;
}

.apropos-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.apropos-intro,
.apropos-conviction,
.apropos-philosophie {
  margin-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.apropos-intro:hover,
.apropos-conviction:hover,
.apropos-philosophie:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(244, 197, 66, 0.25);
}

.apropos-quote {
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  margin: 2.5rem 0;
  padding: 25px 35px;
  border-left: 4px solid var(--or-solaire);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  line-height: 1.8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.apropos-quote em {
  color: var(--turquoise);
}

.signature {
  text-align: right;
  margin-top: 2rem;
  font-family: "Playfair Display", serif;
  color: var(--or-solaire);
  font-style: italic;
  font-size: 1.5rem;
}

.signature span {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

.cta-section {
  background: rgba(12, 28, 58, 0.7);
  padding: 80px 0;
}

/* Styles spécifiques à la page contact */
.contact-page {
  padding: 80px 0;
  background: rgba(12, 28, 58, 0.7);
}

.contact-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.contact-info {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.info-section h3 {
  color: var(--or-solaire);
  margin-bottom: 25px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-section h3 i {
  font-size: 1.2rem;
}

.info-section h4 {
  color: var(--turquoise);
}

.info-section a {
  color: var(--blanc);
}

.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder {
  padding: 40px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--or-solaire);
  margin-bottom: 15px;
  display: block;
}

.emergency-contact {
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.1) 0%, rgba(244, 197, 66, 0.05) 100%);
  border: 1px solid rgba(244, 197, 66, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.emergency-icon {
  background: var(--or-solaire);
  color: var(--bleu-nuit);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.emergency-text h4 {
  color: var(--or-solaire);
  margin-bottom: 8px;
}

.contact-form {
  flex: 1.2;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--blanc);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  color: var(--or-solaire);
  margin-bottom: 10px;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--or-solaire) 0%, #e6b120 100%);
  color: var(--bleu-nuit);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(244, 197, 66, 0.3);
}

.step-content h4 {
  color: var(--turquoise);
  margin-bottom: 10px;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Styles spécifiques à la page offres */
.offre-features {
  margin: 20px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.feature-item i {
  color: var(--or-solaire);
  margin-right: 10px;
  width: 20px;
}

.offre-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.btn-link {
  color: var(--turquoise);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: var(--or-solaire);
}

.offres-details {
  margin-top: 80px;
}

.offre-detail {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.offre-detail h3 {
  color: var(--or-solaire);
  margin-bottom: 25px;
  text-align: center;
}

.detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.detail-text {
  padding: 0;
}

.detail-text h4 {
  color: var(--turquoise);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.detail-text ul {
  list-style: none;
  padding: 0;
}

.detail-text li {
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.detail-text li strong {
  color: var(--or-solaire);
}

.detail-text li::before {
  content: "•";
  color: var(--or-solaire);
  position: absolute;
  left: 0;
}

.detail-stats {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 0;
}

.temoignages-page {
  padding: 80px 0;
  background: rgba(12, 28, 58, 0.7);
}

.filtres-temoignages {
  text-align: center;
  margin-bottom: 50px;
}

.filtres-temoignages h3 {
  color: var(--blanc);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.filtres-boutons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filtre-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--blanc);
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
}

.filtre-btn:hover,
.filtre-btn.active {
  background: var(--or-solaire);
  color: var(--bleu-nuit);
  border-color: var(--or-solaire);
  transform: translateY(-2px);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.temoignage-card {
  padding: 30px;
}

.temoignage-card:hover {
  transform: translateY(-5px);
  border-color: var(--or-solaire);
  box-shadow: 0 15px 30px rgba(244, 197, 66, 0.2);
}

.temoignage-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bleu-celeste) 0%, var(--turquoise) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.client-info {
  flex: 1;
}

.client-name {
  color: var(--blanc);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.client-fonction {
  color: var(--or-solaire);
  font-weight: 600;
  margin-bottom: 2px;
}

.client-entreprise {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.offre-badge {
  background: rgba(244, 197, 66, 0.2);
  color: var(--or-solaire);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(244, 197, 66, 0.3);
}

.client-stars {
  color: var(--or-solaire);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.client-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.temoignage-metrics {
  display: flex;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
  text-align: center;
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--or-solaire);
  line-height: 1;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.temoignages-videos {
  margin-bottom: 80px;
}

.temoignages-videos h3 {
  text-align: center;
  color: var(--blanc);
  margin-bottom: 40px;
  font-size: 2rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.video-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--or-solaire);
}

.video-placeholder {
  background: rgba(0, 0, 0, 0.3);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  position: relative;
}

.video-placeholder i {
  font-size: 3rem;
  color: var(--or-solaire);
  margin-bottom: 15px;
}

.video-placeholder p {
  font-weight: 600;
  margin-bottom: 5px;
}

.video-placeholder span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.video-info {
  padding: 20px;
}

.video-info h4 {
  color: var(--or-solaire);
  margin-bottom: 10px;
}

.video-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Animation pour le filtrage */
.temoignage-card.hidden {
  display: none;
}

/* ============================================
   RESPONSIVE DESIGN GLOBAL
   ============================================ */
/* ====== max-width: 1200px ====== */
@media (max-width: 1200px) {
  /* Titres */
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  /* Vision - 3 cartes par ligne */
  .vision-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
  }
  .vision-card {
    height: 400px;
  }
  .vision-content h3 {
    font-size: 1.5rem;
  }
  /* Header desktop */
  #mainNav ul li {
    margin-left: 25px;
  }
  #mainNav ul li a {
    font-size: 0.95rem;
  }
}
/* ====== max-width: 992px ====== */
@media (max-width: 992px) {
  /* Titres globaux */
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  /* Layout présentation / à propos */
  .presentation-content,
  .apropos-content {
    flex-direction: column;
    gap: 40px;
  }
  .presentation-image,
  .apropos-image {
    order: -1;
  }
  .apropos-image {
    flex: none;
    width: 100%;
    max-width: 400px;
    position: static;
  }
  /* Contact layout */
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-info,
  .contact-form {
    flex: none;
  }
  /* Photo à propos */
  .photo-container {
    width: 280px;
    height: 360px;
  }
  /* Hero */
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
  .hero-stats {
    gap: 30px;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  /* Vision - 2 cartes par ligne */
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .vision-card {
    height: 380px;
  }
  .vision-image {
    height: 180px;
  }
  .vision-content {
    padding: 25px 20px;
  }
  .vision-content h3 {
    font-size: 1.4rem;
  }
  /* Galerie - 2 colonnes sur tablette */
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  /* Header desktop : marges plus serrées */
  #mainNav ul li {
    margin-left: 20px;
  }
  #mainNav ul li a {
    font-size: 0.9rem;
  }
  /* Témoignages */
  .temoignages-grid {
    grid-template-columns: 1fr;
  }
  .stats-globales {
    gap: 40px;
  }
}
/* ====== max-width: 768px ====== */
@media (max-width: 768px) {
  /* Header : bascule en mobile */
  #mainNav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
    width: 40px;
    height: 40px;
  }
  header {
    padding: 12px 0;
  }
  #mobile-nav ul li a {
    font-size: 1.2rem;
  }
  #mobile-nav ul li {
    margin: 20px 0;
  }
  .hero--page {
    /* height: calc(50vh + var(--header-height)); */
    padding: 140px 20px 40px;
  }
  .hero--page h1 {
    font-size: 2.5rem;
  }
  /* Hero */
  .hero {
    padding: 120px 0 80px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  /* Citations */
  .quote {
    font-size: 1.1rem;
  }
  /* Contact blocks */
  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }
  .contact-container {
    margin-bottom: 60px;
  }
  .contact-process {
    padding: 30px 20px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .urgency-levels {
    flex-direction: column;
  }
  .card {
    margin: 0 10px;
  }
  .offre-content,
  .vision-content {
    padding: 25px 20px;
  }
  .offre-content h3 {
    font-size: 1.6rem;
  }
  .vision-content h3 {
    font-size: 1.5rem;
  }
  .offre-content p,
  .vision-content p {
    font-size: 1rem;
  }
  .offre-image {
    max-height: 280px;
  }
  .vision-image {
    height: 200px;
  }
  .btn,
  .btn-form {
    padding: 16px 32px;
    font-size: 1rem;
  }
  .offre-content .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  .btn-emergency {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  .detail-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .detail-stats {
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
  }
  .detail-stats .stat,
  .detail-stats .stat-card {
    flex: 1;
  }
  .offre-cta {
    align-items: center;
  }
  .apropos-content {
    gap: 30px;
  }
  .apropos-image {
    max-width: 350px;
  }
  .photo-container {
    height: 380px;
  }
  .apropos-text h3 {
    font-size: 1.6rem;
  }
  .apropos-text p {
    font-size: 1rem;
  }
  /* Logo texte */
  .logo-text {
    display: none;
  }
  /* Vision - 1 carte par ligne */
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }
  .vision-card {
    height: 350px;
  }
  .vision-image {
    height: 160px;
  }
  .vision-content {
    padding: 20px;
  }
  .vision-content h3 {
    font-size: 1rem;
    min-height: auto;
  }
  /* Galerie - 1 colonne sur mobile */
  .galerie-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .galerie-item {
    height: 200px;
  }
  .galerie-item i {
    font-size: 2.5rem;
  }
  .galerie-content h4 {
    font-size: 1.2rem;
  }
  /* Témoignages */
  .stats-grid {
    flex-direction: column;
    gap: 30px;
  }
  .filtres-boutons {
    flex-direction: column;
    align-items: center;
  }
  .filtre-btn {
    width: 200px;
  }
  .temoignage-header {
    flex-direction: column;
    text-align: center;
  }
  .client-avatar {
    align-self: center;
  }
  .offre-badge {
    align-self: center;
    margin-top: 10px;
  }
  .temoignage-metrics {
    flex-direction: column;
    gap: 15px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
}
/* ====== max-width: 576px ====== */
@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  section {
    padding: 80px 0;
  }
  .btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
  .photo-container {
    width: 250px;
    height: 320px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero--page h1 {
    font-size: 2rem;
  }
  /* Header */
  header {
    padding: 10px 0;
  }
  .mobile-menu-btn .bar {
    height: 2.5px;
  }
  .mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  #mobile-nav ul li a {
    font-size: 1.1rem;
    padding: 8px 15px;
  }
  #mobile-nav ul li {
    margin: 18px 0;
  }
  /* Témoignages */
  .contact-info,
  .contact-form {
    padding: 25px;
  }
  .emergency-contact {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .offre-detail {
    padding: 25px;
  }
  .detail-stats {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
  }
  .detail-stats .stat,
  .detail-stats .stat-card {
    width: 100%;
  }
  .temoignage-card {
    padding: 20px;
  }
  .cta-panel {
    padding: 40px 20px;
  }
}
/* ====== max-width: 480px ====== */
@media (max-width: 480px) {
  .offre-content,
  .vision-content {
    padding: 20px 15px;
  }
  .offre-content h3 {
    font-size: 1.4rem;
  }
  .vision-content h3 {
    font-size: 1.3rem;
  }
}
/* ====== max-width: 400px ====== */
@media (max-width: 400px) {
  .logo-symbol {
    width: 70px;
    height: 70px;
  }
  #mobile-nav ul li a {
    font-size: 1rem;
  }
}
/* ====== min-width: 1400px ====== */
@media (min-width: 1400px) {
  .vision-grid {
    gap: 35px;
  }
  .vision-card {
    height: 450px;
  }
  .vision-image {
    height: 220px;
  }
  .vision-content h3 {
    font-size: 1.7rem;
  }
  .vision-content p {
    font-size: 1.05rem;
  }
  .galerie-grid {
    gap: 30px;
  }
  .galerie-item {
    height: 280px;
  }
}
/* ====== min-width: 1600px ====== */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
  .hero h1 {
    font-size: 5rem;
  }
  .vision-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1600px;
    gap: 40px;
  }
  .vision-card {
    height: 480px;
  }
  .vision-image {
    height: 240px;
  }
}
/* ====== Impression ====== */
@media print {
  .hero-video,
  .hero-contact,
  .scroll-indicator,
  .mobile-menu-btn,
  nav {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
  }
  .btn {
    background: none !important;
    color: black !important;
    border: 1px solid black !important;
  }
}
/* ====== Correctifs Webkit ====== */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .hero h1 {
    background: linear-gradient(to right, #ffffff, var(--or-solaire));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .offre-content h3 {
    background: linear-gradient(to right, #ffffff, var(--or-solaire));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}
/* ====== Mode sombre ====== */
@media (prefers-color-scheme: dark) {
  /* Styles principaux déjà adaptés */
}
/* ====== Réduction des animations ====== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .pyramid,
  .particle,
  .scroll-indicator {
    animation: none !important;
  }
  .card,
  .image-container img,
  .card::before,
  .card::after {
    transition-duration: 0.1s;
    animation: none;
  }
  .card:hover {
    transform: translateY(-5px);
  }
}
/* ============================================
   STYLES SPÉCIFIQUES COMPLÉMENTAIRES
   ============================================ */
/* Animation backgroundShift pour la section contact */
@keyframes backgroundShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Styles de focus améliorés pour l'accessibilité */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--or-solaire);
  outline-offset: 2px;
}

/* Correction pour les images responsives */
img {
  max-width: 100%;
  height: auto;
}

/* Styles pour les états de chargement */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Styles pour les messages d'erreur */
.error-message {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

.error-message.visible {
  display: block;
}

/* ===== OVERVIEW SECTIONS ===== */
.presentation-overview {
  padding: 80px 0;
  background: rgba(12, 28, 58, 0.7);
  position: relative;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.overview-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.overview-card:hover {
  transform: translateY(-10px);
  border-color: var(--or-solaire);
  box-shadow: 0 15px 30px rgba(244, 197, 66, 0.2);
}

.overview-card i {
  font-size: 3rem;
  color: var(--or-solaire);
  margin-bottom: 20px;
}

.overview-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--blanc);
}

.overview-card p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.temoignages-accueil,
.contact-rapide {
  padding: 80px 0;
  text-align: center;
}

.temoignages-accueil {
  background: rgba(12, 28, 58, 0.6);
}

.contact-rapide {
  background: linear-gradient(135deg, rgba(12, 28, 58, 0.9) 0%, rgba(0, 178, 227, 0.5) 100%);
}

.temoignage-preview {
  max-width: 600px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
