/* Classes utilitaires pour masquer les éléments (remplace les styles inline) */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(120deg, #0e4950 0%, #eaf6fa 100%);
  color: #1a2326;
  min-height: 100vh;
  transition: background 1s;
  animation: bgMove 12s ease-in-out infinite alternate;
  background-attachment: fixed;
  overflow-x: hidden; /* Empêche le défilement horizontal */
}
@keyframes bgMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 2px 8px rgba(14,73,80,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  height: 64px;
  min-width: 64px;
  margin-right: 2rem;
}
.logo-img {
  height: 60px;
  width: auto;
  max-width: 120px;
  display: block;
}
nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links li a {
  text-decoration: none;
  color: #0e4950;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s;
  padding: 0.5em 0.8em;
  white-space: nowrap;
  display: block;
}
.nav-links li a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0e4950 60%, #1fa2a6 100%);
  border-radius: 2px;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.nav-links li a:hover,
.nav-links li a:focus {
  color: #1fa2a6;
}
.nav-links li a:hover::after,
.nav-links li a:focus::after {
  width: 100%;
}
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 1.5rem;
}
.burger div {
  width: 25px;
  height: 3px;
  background: #0e4950;
  border-radius: 2px;
  transition: all 0.3s;
}

/**** ACCUEIL HERO ****/
.accueil-hero {
  display: flex;
  flex-direction: row;
  min-height: 70vh;
  width: 100%;
  background: linear-gradient(90deg, #0e4950 0%, #eaf6fa 100%);
  animation: fadeIn 1.5s;
}
.accueil-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3vw 2vw;
  animation: fadeInUp 1.2s;
}
.accueil-col.gauche {
  align-items: center;
  background: linear-gradient(90deg, #0e4950 80%, transparent 100%);
  color: #fff;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.visuel-rond {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(14,73,80,0.18), 0 0 0 8px #eaf6fa;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.visuel-rond img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s, filter 0.4s;
}
.visuel-rond:hover {
  box-shadow: 0 16px 48px rgba(14,73,80,0.25), 0 0 0 12px #eaf6fa;
  transform: scale(1.04);
}
.visuel-rond:hover img {
  transform: scale(1.08) rotate(-2deg);
  filter: brightness(1.08) drop-shadow(0 2px 8px #0e4950aa);
}
.presentation-courte {
  text-align: center;
  margin-bottom: 2rem;
}
.presentation-courte h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e4950;
  margin-bottom: 1rem;
  text-align: center;
}
.presentation-courte h2 {
  font-size: 1.3rem;
  color: #1fa2a6;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.4;
}
.presentation-courte p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  color: #1a2326;
}
.portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #eaf6fa;
  margin: 0 auto 0 0;
  box-shadow: 0 2px 12px rgba(14,73,80,0.10);
  transition: box-shadow 0.3s, transform 0.3s;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
}
.portrait:hover {
  box-shadow: 0 8px 32px rgba(14,73,80,0.18);
  transform: scale(1.06);
}
.portrait:hover img {
  transform: scale(1.08) rotate(2deg);
  filter: brightness(1.08);
}
.accueil-col.droite {
  background: #eaf6fa;
  color: #0e4950;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  min-width: 320px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.qui-suis-je {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}
.qui-suis-je:hover {
  transform: translateY(-5px);
}
.qui-suis-je h3 {
  font-size: 2rem;
  color: #0e4950;
  margin-bottom: 1.5rem;
  text-align: center;
}
.qui-suis-je p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #1a2326;
}
.mission-container {
  margin: 2rem 0;
  text-align: center;
}
.mission-container p {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #0e4950;
}
.mission {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1fa2a6;
  background: linear-gradient(135deg, #1fa2a6, #0e4950);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-top: 0.5rem;
}
.contact-quick {
  margin-top: 2rem;
  text-align: center;
}
.phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e4950;
  background: rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 25px;
  display: inline-block;
  border: 2px solid #1fa2a6;
  transition: all 0.3s ease;
}
.phone:hover {
  background: rgba(31, 162, 166, 0.2);
  transform: scale(1.05);
}
/**** SERVICES & CARTES ****/
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(14, 73, 80, 0.1);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(14, 73, 80, 0.2);
}
.service-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(14, 73, 80, 0.2);
}
.service-card h4 {
  font-size: 1.5rem;
  color: #0e4950;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}
.service-card p {
  color: #1a2326;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.5;
}
.service-card .cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #1fa2a6, #0e4950);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.service-card .cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(31, 162, 166, 0.4);
}
/**** BOUTONS CTA ****/
.cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #1fa2a6, #0e4950);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  margin: 1rem auto;
}
.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(31, 162, 166, 0.4);
}
/**** FORMULAIRES ****/
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 2vw 3rem 2vw;
  background: transparent;
  animation: fadeIn 1.5s;
}
.contact-form {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(14,73,80,0.10);
  padding: 2rem 1.5rem;
  min-width: 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 1.2s;
}
.contact-form label {
  font-weight: 600;
  color: #0e4950;
  margin-bottom: 0.2rem;
}
.contact-form input, .contact-form textarea {
  border: 1.5px solid #b2dbe2;
  border-radius: 0.7rem;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0.5rem;
  background: #f7fcfd;
  transition: border 0.3s, box-shadow 0.3s;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border: 1.5px solid #1fa2a6;
  box-shadow: 0 2px 8px #1fa2a655;
}
.contact-form button.cta {
  margin-top: 0.5rem;
}
.contact-infos {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(14,73,80,0.10);
  padding: 2rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  animation: fadeInUp 1.2s;
}
.contact-infos h3 {
  color: #0e4950;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.contact-infos p {
  color: #1a2326;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
/**** PAGE TITRE ****/
.page-titre {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem 1rem;
  background: transparent;
  color: #0e4950;
  animation: fadeIn 1.5s;
  box-shadow: none;
  margin-bottom: 0.5rem;
}
.page-titre h1 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
  color: #0e4950;
}
.page-titre p {
  font-size: 1.1rem;
  color: #0e4950;
  margin-bottom: 0;
}
/**** PRISE RDV ****/
.prise-rdv {
  text-align: center;
  padding: 2.5rem 1rem 2.5rem 1rem;
  background: transparent;
  animation: fadeIn 1.5s;
}
.prise-rdv h2 {
  color: #0e4950;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.prise-rdv p {
  color: #1a2326;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
footer {
  background: rgba(255,255,255,0.7);
  padding: 3rem 0 1rem 0;
  font-size: 0.95rem;
  color: #0e4950;
  margin-top: 2rem;
  box-shadow: 0 -2px 8px rgba(14,73,80,0.05);
  animation: fadeIn 1.5s;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  color: #0e4950;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #1a2326;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #1fa2a6;
}

.footer-section p {
  margin-bottom: 0.5rem;
  color: #1a2326;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(14, 73, 80, 0.1);
  color: #0e4950;
}
/**** RESPONSIVE ****/
@media (max-width: 1100px) {
  .accueil-hero {
    flex-direction: column;
    border-radius: 0;
  }
  .accueil-col.gauche, .accueil-col.droite {
    border-radius: 0;
    min-width: unset;
    padding: 2vw 4vw;
  }
  .qui-suis-je {
    margin-top: 1.5rem;
  }
  .services {
    gap: 1rem;
    padding: 2rem 2vw 1rem 2vw;
  }
}
@media (max-width: 900px) {
  .header-inner {
    padding: 0 1rem;
  }
  .logo {
    margin-right: 1rem;
  }
}
@media (max-width: 700px) {
  body {
    padding-top: 70px;
    background: linear-gradient(180deg, #0e4950 0%, #eaf6fa 100%); /* Dégradé vertical sur mobile */
  }
  .header-inner {
    padding: 0 0.5rem;
    height: 54px;
    min-height: 54px;
  }
  .logo {
    margin-right: 0.3rem;
    height: 38px;
    min-width: 38px;
  }
  .logo-img {
    height: 28px;
    max-width: 44px;
  }
  nav {
    flex: unset;
    width: 100%;
    justify-content: flex-end;
  }
  .burger {
    display: flex;
    margin-left: auto;
    z-index: 101;
  }
  .nav-links {
    position: fixed;
    left: 50%;
    top: 56px;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 340px;
    background: #fff;
    flex-direction: column;
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(.4,2,.6,1);
    box-shadow: 0 8px 32px rgba(14,73,80,0.18);
    border-radius: 1.2rem;
    z-index: 100;
    gap: 0;
    align-items: center;
    padding: 0;
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.open {
    height: 320px;
    padding: 1.2rem 0 1.2rem 0;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    margin: 0.7rem 0;
    text-align: center;
    width: 100%;
  }
  .nav-links li a {
    font-size: 1.2rem;
    width: 100%;
    display: block;
    padding: 1rem 0.5rem;
    border-radius: 0.7rem;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links li a:hover {
    background: linear-gradient(135deg, #1fa2a6, #0e4950);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 162, 166, 0.3);
  }
  .visuel-rond {
    width: 120px;
    height: 120px;
    margin-bottom: 1.2rem;
  }
  .presentation-courte {
    margin-bottom: 1.2rem;
  }
  .accueil-col.gauche, .accueil-col.droite {
    padding: 2vw 2vw;
  }
  .accueil-hero {
    flex-direction: column;
    min-height: unset;
    padding: 1rem;
  }
  .accueil-col {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  .accueil-col.gauche {
    background: linear-gradient(135deg, #0e4950 0%, #1fa2a6 50%, #2db3b8 100%);
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(14, 73, 80, 0.25);
  }
  .accueil-col.droite {
    background: rgba(234, 246, 250, 0.9);
    border-radius: 1rem;
  }
  .services {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2vw 1rem 2vw;
  }
  .service-card {
    width: 95vw;
    max-width: 340px;
  }
  .contact-section {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
/**** ANIMATIONS ****/
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.header-centered {
  width: 100%;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 6px 32px rgba(14,73,80,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  min-height: 70px;
  height: 70px;
  backdrop-filter: blur(10px) saturate(1.2);
  transition: box-shadow 0.3s, background 0.3s;
}
.header-inner {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  height: 70px;
  min-height: 70px;
  position: relative;
  gap: 1rem;
}
.logo {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 120px;
}

.logo a {
  display: block;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
}
nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 1rem;
}
.header-cta {
  grid-column: 3;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
  margin-left: 1rem;
}

.cta-header {
  padding: 0.4rem 0.8rem;
  background: linear-gradient(135deg, #1fa2a6, #0e4950);
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-header:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(31, 162, 166, 0.4);
}

.cta-header.secondary {
  background: transparent;
  color: #0e4950;
  border: 1.5px solid #0e4950;
  font-size: 0.75rem;
  padding: 0.4rem 0.7rem;
}

.cta-header.secondary:hover {
  background: #0e4950;
  color: white;
}

.burger {
  display: none;
}
.nav-links {
  position: relative;
  left: 0;
  top: 0;
  transform: none;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 1000px) {
  .header-inner {
    grid-template-columns: 100px 1fr auto;
  }
  
  .nav-links {
    gap: 0.6rem;
  }
  
  .nav-links li a {
    font-size: 0.9rem;
    padding: 0.3em 0.4em;
  }
  
  .logo {
    max-width: 100px;
  }
  
  .logo-img {
    height: 55px;
  }
  
  .cta-header {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  
  .cta-header.secondary {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }
  
  .header-inner {
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .header-inner {
    display: flex;
    padding: 0 1rem;
    height: 54px;
    min-height: 54px;
    gap: 0.5rem;
  }
  nav {
    justify-content: flex-end;
  }
  .burger {
    display: flex;
    margin-left: auto;
  }
  .nav-links {
    position: fixed;
    left: 50%;
    top: 56px;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 340px;
    margin: 0;
  }
  
  .logo {
    max-width: 80px;
    flex-shrink: 0;
  }
  
  .logo-img {
    height: 50px;
  }
  
  .logo a:hover {
    transform: scale(1.02);
  }
}

.accueil-galerie {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin: 3rem auto 2rem auto;
  padding: 2rem 1vw;
  max-width: 1100px;
  background: rgba(255,255,255,0.7);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(14,73,80,0.08);
  position: relative;
  overflow: hidden;
}
.accueil-galerie::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  background: url('mandala.png') no-repeat right bottom;
  background-size: contain;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1200px) {
  .accueil-galerie::after {
    width: 220px;
    height: 220px;
    right: -60px;
    bottom: -40px;
  }
}
@media (max-width: 900px) {
  .accueil-galerie::after {
    display: none;
  }
}
body.accueil-mandala::after { display: none !important; }
.galerie-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(14,73,80,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin: 0 0.5rem;
  min-width: 260px;
  max-width: 420px;
  transition: box-shadow 0.3s, transform 0.3s;
  animation: fadeInUp 1.2s;
  min-height: 540px;
  justify-content: flex-start;
}
.galerie-item img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4/3;
  height: 320px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(14,73,80,0.10);
  margin-bottom: 1.2rem;
  transition: transform 0.4s, box-shadow 0.4s;
  background: #fff;
}
.galerie-item:hover {
  box-shadow: 0 12px 36px rgba(14,73,80,0.16);
  transform: translateY(-6px) scale(1.03);
}
.galerie-item:hover img {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(14,73,80,0.18);
}
.galerie-item h3 {
  color: #0e4950;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0 1.2rem 0;
  text-align: center;
  letter-spacing: 1px;
}
.galerie-item .cta {
  margin-bottom: 0.7rem;
  width: 90%;
  max-width: 260px;
}
.galerie-item .cta.secondaire {
  background: #f7fcfd;
  color: #0e4950;
  border: 2px solid #0e4950;
  margin-bottom: 0.2rem;
  font-weight: 600;
  box-shadow: none;
  transition: background 0.3s, color 0.3s;
}
.galerie-item .cta.secondaire:hover {
  background: #0e4950;
  color: #fff;
}
@media (max-width: 900px) {
  .accueil-galerie {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 2vw;
  }
  .galerie-item img {
    height: 220px;
    max-width: 95vw;
  }
  .galerie-item {
    min-height: unset;
  }
} 

/* Message de succès du formulaire de contact */
#form-success-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  min-width: 280px;
  max-width: 90vw;
  background: linear-gradient(90deg, #eaf6fa 60%, #b2dbe2 100%);
  color: #0e4950;
  border-left: 6px solid #1fa2a6;
  border-radius: 1.2rem;
  box-shadow: 0 16px 48px rgba(14,73,80,0.22), 0 0 0 100vw rgba(14,73,80,0.13);
  padding: 2.2em 2.5em 2em 2.5em;
  font-size: 1.18rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  opacity: 0;
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.5s, transform 0.5s cubic-bezier(.4,2,.6,1);
  animation: none;
  box-sizing: border-box;
}
#form-success-message.visible {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
  animation: popupIn 0.5s cubic-bezier(.4,2,.6,1);
}
#form-success-message.fadeout {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.5s, transform 0.5s cubic-bezier(.4,2,.6,1);
  animation: popupOut 0.4s cubic-bezier(.4,2,.6,1);
}
#form-success-message .close-popup {
  position: absolute;
  top: 0.7em;
  right: 1.1em;
  font-size: 2.1em;
  color: #1fa2a6;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 900;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s, transform 0.2s;
  z-index: 10001;
  line-height: 1;
  padding: 0;
  margin: 0;
}
#form-success-message .close-popup:hover {
  color: #0e4950;
  opacity: 1;
  transform: scale(1.15);
}
@keyframes popupIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes popupOut {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
} 
@media (max-width: 500px) {
  #form-success-message {
    padding: 1.5em 1.2em 1.2em 1.2em;
    min-width: 0;
    max-width: 98vw;
  }
  #form-success-message .close-popup {
    top: 0.3em;
    right: 0.6em;
    font-size: 1.5em;
  }
} 

/* Calendrier de réservation */
.calendrier-section {
  background: transparent;
  border-radius: 1.5rem;
  padding: 0;
  max-width: 900px;
  margin: 4rem auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  animation: fadeInUp 1.2s;
}
#calendar-container {
  margin: 2rem auto;
  max-width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(14, 73, 80, 0.12);
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eaf6fa;
}

.calendar-title {
  font-weight: 700;
  color: #0e4950;
  font-size: 1.5rem;
  text-transform: capitalize;
  flex: 1;
  text-align: center;
}

.calendar-prev, .calendar-next {
  background: linear-gradient(135deg, #1fa2a6 0%, #0e4950 100%);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(31, 162, 166, 0.3);
}

.calendar-prev:hover, .calendar-next:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(31, 162, 166, 0.5);
  background: linear-gradient(135deg, #0e4950 0%, #1fa2a6 100%);
}

.calendar-prev:active, .calendar-next:active {
  transform: scale(0.95);
}

.calendar-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.5rem;
  background: transparent;
  table-layout: fixed;
  display: table;
  margin: 0 auto;
}

.calendar-table thead {
  display: table-header-group;
}

.calendar-table tbody {
  display: table-row-group;
}

.calendar-table tr {
  display: table-row;
}

.calendar-table th, .calendar-table td {
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  width: calc(100% / 7);
  min-width: 0;
  height: 3rem;
  position: relative;
  vertical-align: middle;
  display: table-cell;
  box-sizing: border-box;
}

.calendar-table td:empty {
  visibility: hidden;
}

.calendar-table th {
  color: #1fa2a6;
  font-weight: 700;
  background: transparent;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 0.5rem;
}

.calendar-day {
  background: #f7fcfd;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  color: #0e4950;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
}

.calendar-day:hover:not(.calendar-disabled) {
  background: linear-gradient(135deg, #1fa2a6 0%, #0e4950 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 162, 166, 0.4);
  border: 2px solid #1fa2a6;
  transform: translateY(-2px);
}

.calendar-day.calendar-today {
  background: linear-gradient(135deg, #eaf6fa 0%, #b2dbe2 100%);
  border: 2px solid #1fa2a6;
  font-weight: 700;
  color: #0e4950;
  box-shadow: 0 2px 8px rgba(31, 162, 166, 0.2);
}

.calendar-day.calendar-today::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background: #1fa2a6;
  border-radius: 50%;
}

.calendar-day.calendar-selected {
  background: linear-gradient(135deg, #1fa2a6 0%, #0e4950 100%);
  color: #fff;
  border: 2px solid #0e4950;
  box-shadow: 0 6px 20px rgba(31, 162, 166, 0.5);
  transform: scale(1.05);
  font-weight: 700;
}

.calendar-disabled {
  color: #b2dbe2;
  background: #f0f8fa;
  cursor: not-allowed;
  opacity: 0.4;
}

.calendar-disabled:hover {
  transform: none !important;
  background: #f0f8fa !important;
  color: #b2dbe2 !important;
  box-shadow: none !important;
}
#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(14, 73, 80, 0.12);
  padding: 2.5rem 2rem;
  margin: 2rem auto 0 auto;
  max-width: 700px;
  width: 100%;
  animation: fadeInUp 0.8s;
  box-sizing: border-box;
  align-items: center;
}

#bookingForm .form-group {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

#bookingForm label {
  text-align: left;
  width: 100%;
}

#bookingForm.hidden {
  display: none !important;
}

#payment-error {
  color: #df1b41;
  margin: 1rem 0;
  padding: 1rem;
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 0.5rem;
}

#payment-success {
  color: #1fa2a6;
  margin: 1rem 0;
}

#payment-loader {
  text-align: center;
  margin: 1rem 0;
}

#bookingForm label {
  color: #0e4950;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
}

#bookingForm .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}

#bookingForm input, 
#bookingForm textarea, 
#bookingForm select {
  width: 100%;
  border: 2px solid #eaf6fa;
  border-radius: 0.75rem;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  background: #fff;
  color: #1a2326;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

#bookingForm select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231fa2a6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

#bookingForm input:focus, 
#bookingForm textarea:focus, 
#bookingForm select:focus {
  outline: none;
  border: 2px solid #1fa2a6;
  box-shadow: 0 4px 12px rgba(31, 162, 166, 0.2);
  background: #f7fcfd;
}

/* Désactiver la validation HTML5 en temps réel */
#bookingForm input:invalid:not(:focus):not(:placeholder-shown),
#contactForm input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #eaf6fa;
}

/* Validation uniquement après blur (quand l'utilisateur quitte le champ) */
#bookingForm input:invalid:not(:focus):not(:placeholder-shown):not([value=""]),
#contactForm input:invalid:not(:focus):not(:placeholder-shown):not([value=""]) {
  border-color: #df1b41;
}

/* Masquer les messages de validation HTML5 par défaut */
#bookingForm input:invalid,
#contactForm input:invalid {
  box-shadow: none;
}

#bookingForm button.cta {
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  box-sizing: border-box;
  text-align: center;
}

#show-payment-btn {
  background: linear-gradient(135deg, #1fa2a6 0%, #0e4950 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(31, 162, 166, 0.3);
}

#show-payment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 162, 166, 0.4);
}

#show-payment-btn:active {
  transform: translateY(0);
}
/* Responsive pour le calendrier */
@media (max-width: 768px) {
  #calendar-container {
    padding: 1.5rem 1rem;
    margin: 1rem auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .calendar-title {
    font-size: 1.2rem;
  }
  
  .calendar-table {
    width: 100%;
    border-spacing: 0.3rem;
    table-layout: fixed;
  }
  
  .calendar-table th, .calendar-table td {
    padding: 0.5rem 0.2rem;
    font-size: 0.85rem;
    height: 2.5rem;
    width: calc(100% / 7);
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .calendar-day {
    min-height: 2.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  /* Empêcher le débordement du calendrier */
  #calendar-container {
    overflow-x: hidden;
    overflow-y: visible;
  }
  
  #custom-calendar-wrapper {
    padding: 0 1rem;
    margin: 1rem auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .calendrier-section, #calendar-container, #bookingForm {
    max-width: 100%;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
  
  #calendar-container {
    padding: 1rem 0.75rem;
    margin: 1rem auto;
    width: 100%;
    max-width: 100%;
  }
  
  .calendar-nav {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    width: 100%;
  }
  
  .calendar-title {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .calendar-prev, .calendar-next {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  
  .calendar-table {
    width: 100%;
    border-spacing: 0.25rem;
    table-layout: fixed;
  }
  
  .calendar-table th, .calendar-table td {
    padding: 0.35rem 0.1rem;
    font-size: 0.75rem;
    height: 2rem;
    width: calc(100% / 7);
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .calendar-table th {
    font-size: 0.7rem;
    padding-bottom: 0.5rem;
  }
  
  .calendar-day {
    min-height: 2rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  /* Empêcher le débordement du calendrier */
  #calendar-container {
    overflow-x: hidden;
    overflow-y: visible;
  }
  
  .calendar-table {
    overflow: visible;
  }
} 

/* Styles pour les nouvelles sections de la page d'accueil */
.services-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(14, 73, 80, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(14, 73, 80, 0.15);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e4950;
  margin: 0;
  text-align: center;
  flex: 1;
}

.section-visuel {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(14, 73, 80, 0.2);
  transition: transform 0.3s ease;
}

.section-visuel:hover {
  transform: scale(1.05);
}

.section-visuel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-content h3 {
  font-size: 1.8rem;
  color: #1fa2a6;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.section-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
  color: #1a2326;
}

/* Styles pour les prix mis en valeur */
.prix-info {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e4950;
  background: linear-gradient(135deg, #1fa2a6, #0e4950);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  display: block;
}

.prix-info::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;
}

.prix-info:hover::before {
  left: 100%;
}

.prix-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 1rem 0;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.prix-highlight {
  background: linear-gradient(135deg, #ffd93d, #ff6b6b);
  color: #0e4950;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  margin: 2rem 0;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.prix-highlight::after {
  content: '💎';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1.5rem;
  background: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.prix-section {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  border: 2px solid rgba(31, 162, 166, 0.3);
  backdrop-filter: blur(10px);
}

.prix-section h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.prix-liste {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.prix-item {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.prix-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.3);
}

.prix-item h4 {
  color: #0e4950;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.prix-item .prix {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1fa2a6;
  background: linear-gradient(135deg, #1fa2a6, #0e4950);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prix-item .description {
  color: #1a2326;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.initiations-grid, .sons-grid {
  margin: 2rem 0;
  text-align: center;
}

.initiations-grid h4, .sons-grid h4 {
  font-size: 1.4rem;
  color: #0e4950;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.initiations-cards, .sons-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.initiation-card, .sons-card {
  background: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.initiation-card:hover, .sons-card:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(14, 73, 80, 0.15);
}

.initiation-card h5, .sons-card h5 {
  font-size: 1.3rem;
  color: #0e4950;
  margin-bottom: 1rem;
  font-weight: 700;
}

.initiation-card p, .sons-card p {
  color: #1a2326;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  flex-grow: 1;
}

.initiation-card .prix, .sons-card .prix {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1fa2a6;
  margin-bottom: 1rem;
}

.initiation-card .cta, .sons-card .cta {
  margin-top: auto;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* Anciens styles pour compatibilité */
.initiations-list, .sons-list {
  margin: 2rem 0;
  text-align: center;
}

.initiations-list h4, .sons-list h4 {
  font-size: 1.4rem;
  color: #0e4950;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.initiations-list ul, .sons-list ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.initiations-list li, .sons-list li {
  background: rgba(255, 255, 255, 0.3);
  padding: 1.2rem;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  color: #0e4950;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.initiations-list li:hover, .sons-list li:hover {
  background: rgba(31, 162, 166, 0.2);
  transform: translateY(-3px);
}

.precautions {
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 20px;
  border-left: 4px solid #ffc107;
  max-width: 700px;
  text-align: center;
}

.precautions h4 {
  color: #856404;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 600;
}

.precautions p {
  color: #856404;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  font-size: 1rem;
}

.prestations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.prestation-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.prestation-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.prestation-item h4 {
  font-size: 1.6rem;
  color: #0e4950;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

.prestation-item p {
  color: #1a2326;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.5;
}

.prestation-item .prix {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1fa2a6;
  text-align: center;
  margin-bottom: 1.5rem;
}

.prestation-item ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.prestation-item li {
  padding: 0.8rem;
  margin: 0.5rem 0;
  background: rgba(31, 162, 166, 0.1);
  border-radius: 10px;
  color: #0e4950;
  font-weight: 500;
  text-align: center;
}

.contact-info {
  margin-top: 2rem;
  text-align: center;
}

.contact-info p {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0e4950;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Responsive optimisé */
@media (max-width: 900px) {
  .services {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 2rem 1rem;
  }
  
  .prestations-list {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .initiations-list ul, .sons-list ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .presentation-courte h1 {
    font-size: 2rem;
  }
  
  .presentation-courte h2 {
    font-size: 1.1rem;
  }
  
  .qui-suis-je h3 {
    font-size: 1.8rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .section-content h3 {
    font-size: 1.5rem;
  }
  
  .prix-info {
    font-size: 1.2rem;
  }
} 

/* Styles pour la page Sophrologie */
.benefits, .session-info {
  margin: 2rem 0;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits h4, .session-info h4 {
  font-size: 1.4rem;
  color: #0e4950;
  margin-bottom: 1rem;
  text-align: center;
}

.benefits ul, .session-info ul {
  list-style: none;
  padding: 0;
}

.benefits li, .session-info li {
  background: rgba(255, 255, 255, 0.3);
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 10px;
  color: #0e4950;
  font-weight: 500;
  border-left: 4px solid #1fa2a6;
  transition: all 0.3s ease;
}

.benefits li:hover, .session-info li:hover {
  background: rgba(31, 162, 166, 0.2);
  transform: translateX(5px);
}

.session-info p {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #0e4950;
}

/* Responsive pour la page Sophrologie */
@media (max-width: 700px) {
  .benefits, .session-info {
    margin: 1.5rem 0;
  }
  
  .benefits h4, .session-info h4 {
    font-size: 1.2rem;
  }
  
  .benefits li, .session-info li {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
} 

/* Conteneurs pour les boutons CTA */
.cta-container {
  text-align: center;
  margin: 2rem 0;
}

/* Optimisation des titres de page */
.page-titre {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 800px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-titre h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #0e4950;
  margin-bottom: 1rem;
  text-align: center;
}

.page-titre p {
  font-size: 1.3rem;
  color: #1fa2a6;
  text-align: center;
  line-height: 1.5;
}

/* Optimisation des sections de services */
.services-section {
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(14, 73, 80, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 1000px;
}

.services-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(14, 73, 80, 0.15);
}

/* Optimisation des en-têtes de section */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e4950;
  margin: 0;
  text-align: center;
  flex: 1;
}

/* Responsive pour les conteneurs CTA */
@media (max-width: 700px) {
  .page-titre h1 {
    font-size: 2.5rem;
  }
  
  .page-titre p {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cta-container {
    margin: 1.5rem 0;
  }
} 

/* Titres de page simplifiés et épurés */
.page-titre-simple {
  text-align: center;
  padding: 4rem 2rem 2rem 2rem;
  margin: 0 auto;
  max-width: 800px;
}

.page-titre-simple h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0e4950;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(135deg, #0e4950, #1fa2a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-titre-simple p {
  font-size: 1.4rem;
  color: #1fa2a6;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}

/* Suppression de l'ancien style page-titre */
.page-titre {
  display: none;
} 

/* Responsive pour les titres simples */
@media (max-width: 900px) {
  .page-titre-simple h1 {
    font-size: 3rem;
  }
  
  .page-titre-simple p {
    font-size: 1.2rem;
  }
}

@media (max-width: 700px) {
  .page-titre-simple {
    padding: 3rem 1rem 2rem 1rem;
  }
  
  .page-titre-simple h1 {
    font-size: 2.5rem;
  }
  
  .page-titre-simple p {
    font-size: 1.1rem;
  }
} 

/* Styles pour la page contact optimisée */
.contact-hero {
  margin: 3rem auto;
  max-width: 900px;
  padding: 0 2rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(14, 73, 80, 0.1);
  display: flex;
  align-items: center;
  gap: 3rem;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-visuel {
  flex-shrink: 0;
}

.contact-visuel img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(14, 73, 80, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.contact-details {
  flex: 1;
}

.contact-details h2 {
  font-size: 2.5rem;
  color: #0e4950;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-description {
  font-size: 1.2rem;
  color: #1fa2a6;
  margin-bottom: 2rem;
  font-weight: 500;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.1rem;
  color: #0e4950;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-text p {
  color: #1a2326;
  font-weight: 500;
  font-size: 1.2rem;
}

.contact-link {
  color: #0e4950;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 700;
  font-size: 1.3rem;
}

.contact-link:hover {
  color: #1fa2a6;
  text-decoration: underline;
}

/* Section formulaire de contact */
.contact-section {
  margin: 4rem auto;
  max-width: 800px;
  padding: 0 2rem;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(14, 73, 80, 0.1);
}

.contact-form-container h3 {
  font-size: 2rem;
  color: #0e4950;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #0e4950;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: #1a2326;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1fa2a6;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(31, 162, 166, 0.1);
}

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

/* Section réservation */
.booking-section {
  margin: 4rem auto;
  max-width: 900px;
  padding: 0 2rem;
  display: none !important; /* Masqué temporairement - le calendrier ne fonctionne pas */
}

.booking-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(14, 73, 80, 0.1);
}

  .booking-header {
    margin-bottom: 2.5rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .booking-header h3 {
    font-size: 2.5rem;
    color: #0e4950;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
  }

  .booking-subtitle {
    font-size: 1.1rem;
    color: #1fa2a6;
    margin: 0;
    font-weight: 400;
    text-align: center;
    width: 100%;
  }

.booking-container h3 {
  font-size: 2rem;
  color: #0e4950;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

/* Styles pour Calendly */
.calendly-wrapper {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(14, 73, 80, 0.1);
  margin: 2rem 0;
  overflow: hidden;
}

.calendly-inline-widget {
  border-radius: 1rem;
  overflow: hidden;
}

/* Styles pour le calendrier personnalisé amélioré */
#custom-calendar-wrapper {
  background: transparent;
  border-radius: 1.5rem;
  padding: 0;
  margin: 2rem auto;
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.booking-info {
  background: #eaf6fa;
  border-left: 4px solid #1fa2a6;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

.booking-info p {
  margin: 0.5rem 0;
  color: #0e4950;
  font-size: 0.95rem;
  line-height: 1.6;
}

.booking-info a {
  color: #1fa2a6;
  text-decoration: underline;
  font-weight: 600;
}

.booking-info a:hover {
  color: #0e4950;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
}

.form-row .form-group {
  width: 100%;
  min-width: 0;
}

.price-display {
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(31, 162, 166, 0.1) 0%, rgba(14, 73, 80, 0.05) 100%);
  border-radius: 1rem;
  font-size: 1.3rem;
  color: #0e4950;
  font-weight: 700;
  border: 2px solid rgba(31, 162, 166, 0.2);
  margin: 0.5rem auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
}

.price-display strong {
  color: #1fa2a6;
  font-size: 1.4rem;
}

/* Section partenariats */
.partnership-section {
  margin: 4rem auto;
  max-width: 800px;
  padding: 0 2rem;
}

.partnership-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(14, 73, 80, 0.1);
  text-align: center;
}

.partnership-container h3 {
  font-size: 2rem;
  color: #0e4950;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.partnership-container p {
  font-size: 1.1rem;
  color: #1a2326;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Responsive pour la page contact */
@media (max-width: 900px) {
  .contact-info-card {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .contact-visuel img {
    width: 120px;
    height: 120px;
  }
  
  .contact-details h2 {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  #bookingForm {
    padding: 1.5rem 1.25rem;
    margin: 1.5rem auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  #bookingForm input, 
  #bookingForm textarea, 
  #bookingForm select {
    padding: 0.75rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .booking-container {
    padding: 2rem 1.5rem;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .booking-section {
    padding: 0 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 700px) {
  .contact-hero,
  .contact-section,
  .booking-section {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }
  
  .contact-info-card,
  .contact-form-container,
  .booking-container {
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }
  
  .contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .contact-details h2 {
    font-size: 1.8rem;
    text-align: center;
    width: 100%;
  }
  
  .contact-description {
    font-size: 1rem;
    text-align: center;
    width: 100%;
  }
  
  .contact-methods {
    gap: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-method {
    padding: 0.8rem;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(234, 246, 250, 0.85), rgba(212, 238, 243, 0.7));
    border: 2px solid #1fa2a6;
    box-shadow: 0 4px 15px rgba(31, 162, 166, 0.15);
  }

  .contact-method:hover {
    background: linear-gradient(135deg, rgba(234, 246, 250, 0.95), rgba(212, 238, 243, 0.85), rgba(184, 229, 237, 0.75));
    border-color: #0e4950;
    box-shadow: 0 6px 20px rgba(31, 162, 166, 0.25);
  }
  
  .contact-icon {
    font-size: 1.5rem;
  }
  
  .page-titre-simple {
    text-align: center;
    width: 100%;
    padding: 2rem 1rem;
    box-sizing: border-box;
  }
  
  .page-titre-simple h1 {
    text-align: center;
    width: 100%;
  }
  
  .page-titre-simple p {
    text-align: center;
    width: 100%;
  }
} 

/* Optimisation des cartes de services */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(14, 73, 80, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(14, 73, 80, 0.2);
}

.service-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(14, 73, 80, 0.2);
}

.service-card h4 {
  font-size: 1.5rem;
  color: #0e4950;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

.service-card p {
  color: #1a2326;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.5;
  flex-grow: 1;
}

.service-card .cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #1fa2a6, #0e4950);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto;
}

.service-card .cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(31, 162, 166, 0.4);
} 

/* ===== OPTIMISATIONS MOBILE PREMIUM ===== */

/* Améliorations globales pour mobile */
@media (max-width: 768px) {
  /* Amélioration de la lisibilité */
  body {
    font-size: 16px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Optimisation du header mobile */
  .header-centered {
    padding: 0;
    min-height: 60px;
    height: 60px;
    backdrop-filter: blur(15px) saturate(1.3);
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 20px rgba(14,73,80,0.15);
  }

  .header-inner {
    height: 60px;
    min-height: 60px;
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .logo {
    max-width: 60px;
    flex-shrink: 0;
  }

  .logo-img {
    height: 45px;
    width: auto;
  }

  /* Navigation mobile améliorée */
  .nav-links {
    position: fixed;
    left: 50%;
    top: 65px;
    transform: translateX(-50%);
    width: 95vw;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(14,73,80,0.25);
    border-radius: 20px;
    z-index: 1000;
    gap: 0;
    align-items: center;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .nav-links.open {
    height: 380px;
    padding: 2rem 0;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    margin: 0.5rem 0;
    text-align: center;
    width: 90%;
  }

  .nav-links li a {
    font-size: 1.1rem;
    width: 100%;
    display: block;
    padding: 1.2rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #0e4950;
    background: transparent;
  }

  .nav-links li a:hover,
  .nav-links li a:focus {
    background: linear-gradient(135deg, #1fa2a6, #0e4950);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 162, 166, 0.4);
  }

  /* Ajout de couleurs douces bleu-vert pour les sections principales sur mobile */
  .qui-suis-je {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(234, 246, 250, 0.9), rgba(212, 238, 243, 0.8));
    border: 2px solid #1fa2a6;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(31, 162, 166, 0.15);
  }

  .mission-container {
    background: linear-gradient(135deg, rgba(234, 246, 250, 0.6), rgba(212, 238, 243, 0.4), rgba(184, 229, 237, 0.3));
    border-left: 4px solid #1fa2a6;
    padding: 1rem;
    border-radius: 8px;
  }

  .mission {
    color: #0e4950;
    font-weight: 600;
  }

  /* Burger menu amélioré */
  .burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .burger:hover {
    background: rgba(14, 73, 80, 0.1);
  }

  .burger div {
    width: 28px;
    height: 3px;
    background: #0e4950;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .burger.active div:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger.active div:nth-child(2) {
    opacity: 0;
  }

  .burger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Hero section mobile optimisée */
  .accueil-hero {
    flex-direction: column;
    min-height: auto;
    padding: 1rem;
    gap: 1.5rem;
    background: linear-gradient(180deg, #0e4950 0%, #eaf6fa 100%);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .accueil-col {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .accueil-col.gauche {
    background: rgba(14, 73, 80, 0.95);
    color: white;
    text-align: center;
    order: 1;
  }

  .accueil-col.droite {
    background: rgba(234, 246, 250, 0.95);
    color: #0e4950;
    order: 2;
    text-align: center;
  }

  .visuel-rond {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .presentation-courte {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .presentation-courte h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: white;
    text-align: center;
    width: 100%;
  }

  .presentation-courte h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    width: 100%;
  }

  .presentation-courte p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    text-align: center;
    width: 100%;
  }

  .portrait {
    width: 60px;
    height: 60px;
    margin: 1rem auto 0 auto;
    border: 3px solid rgba(255,255,255,0.3);
    display: block;
  }

  .qui-suis-je {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .qui-suis-je h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0e4950;
    text-align: center;
    width: 100%;
  }

  .qui-suis-je p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #1a2326;
    text-align: center;
    width: 100%;
  }

  .mission-container {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mission {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1fa2a6;
    display: block;
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
  }

  .contact-quick {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .phone {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    background: rgba(31, 162, 166, 0.1);
    color: #0e4950;
    border: 2px solid #1fa2a6;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
  }

  .phone:hover {
    background: #1fa2a6;
    color: white;
    transform: scale(1.05);
  }

  /* Services mobile optimisés */
  .services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    padding: 2rem 1.5rem;
    min-height: 280px;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(14, 73, 80, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(14, 73, 80, 0.25);
  }

  .service-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 6px 25px rgba(14, 73, 80, 0.2);
    display: block;
  }

  .service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0e4950;
    font-weight: 700;
    text-align: center;
    width: 100%;
  }

  .service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #1a2326;
    text-align: center;
    width: 100%;
  }

  .service-card .cta {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    background: linear-gradient(135deg, #1fa2a6, #0e4950);
    color: white;
    text-decoration: none;
    display: block;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 162, 166, 0.3);
    width: auto;
    max-width: 100%;
  }

  .service-card .cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(31, 162, 166, 0.4);
  }

  /* Footer mobile optimisé */
  .footer-content {
    padding: 0 1rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .footer-section {
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-section ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .footer-section li {
    text-align: center;
    width: 100%;
  }

  .footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0e4950;
  }

  .footer-section ul {
    margin-bottom: 1rem;
  }

  .footer-section li {
    margin-bottom: 0.8rem;
  }

  .footer-section a {
    font-size: 1rem;
    color: #1a2326;
    transition: color 0.3s ease;
  }

  .footer-section a:hover {
    color: #1fa2a6;
  }

  .footer-bottom {
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #0e4950;
  }
}

/* Optimisations pour très petits écrans */
@media (max-width: 480px) {
  .header-inner {
    padding: 0 0.8rem;
  }

  .logo-img {
    height: 40px;
  }

  .nav-links {
    width: 98vw;
    max-width: 360px;
  }

  .nav-links li a {
    font-size: 1rem;
    padding: 1rem 0.8rem;
  }

  .accueil-hero {
    padding: 0.8rem;
  }

  .accueil-col {
    padding: 1.5rem 1rem;
  }

  .visuel-rond {
    width: 120px;
    height: 120px;
  }

  .presentation-courte h1 {
    font-size: 1.9rem;
  }

  .presentation-courte h2 {
    font-size: 1.1rem;
  }

  .services {
    padding: 1.5rem 0.8rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
    min-height: 250px;
  }

  .service-card img {
    width: 70px;
    height: 70px;
  }

  .service-card h4 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .service-card .cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Optimisations pour écrans moyens */
@media (max-width: 900px) and (min-width: 769px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  
  .service-card {
    padding: 2rem;
    min-height: 280px;
  }
  
  .service-card h4 {
    font-size: 1.3rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
}

/* Styles pour le système de paiement Stripe */
#payment-section {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#payment-section h4 {
  color: #0e4950;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.3rem;
}

#payment-element {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

#payment-error {
  background: #fee;
  color: #c33;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #fcc;
  margin: 1rem 0;
}

#payment-success {
  background: #efe;
  color: #363;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #cfc;
  margin: 1rem 0;
}

#payment-loader {
  text-align: center;
  padding: 2rem;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1fa2a6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Styles pour les champs de formulaire améliorés */
.form-group input[type="tel"] {
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: #1a2326;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-group input[type="tel"]:focus {
  outline: none;
  border-color: #1fa2a6;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(31, 162, 166, 0.1);
}

/* Amélioration du bouton de paiement */
#submit-payment {
  background: linear-gradient(135deg, #1fa2a6, #0e4950);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

#submit-payment:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(31, 162, 166, 0.4);
}

#submit-payment:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Responsive pour le système de paiement */
@media (max-width: 700px) {
  #payment-section {
    padding: 1.5rem 1rem;
    margin: 1.5rem auto 0 auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  
  #payment-section h4 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  #payment-element {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }
  
  #show-payment-btn {
    width: 100%;
    max-width: 100%;
    margin: 1rem auto 0 auto;
    display: block;
    box-sizing: border-box;
  }
  
  #submit-payment {
    width: 100%;
    max-width: 100%;
    margin: 1rem auto 0 auto;
    display: block;
    box-sizing: border-box;
  }
}

/* ===== OPTIMISATIONS PERFORMANCE MOBILE ===== */

/* Optimisations pour les performances */
@media (max-width: 768px) {
  /* Réduction des animations sur mobile pour de meilleures performances */
  * {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* Optimisation du rendu des éléments */
  .service-card,
  .nav-links,
  .burger {
    will-change: transform;
  }

  /* Amélioration du contraste pour la lisibilité avec des tons bleu-vert doux */
  .service-card {
    background: linear-gradient(135deg, #ffffff 0%, #eaf6fa 50%, #d4eef3 100%);
    border: 2px solid #1fa2a6;
    box-shadow: 0 8px 24px rgba(31, 162, 166, 0.15);
  }

  .service-card:hover {
    background: linear-gradient(135deg, #eaf6fa 0%, #d4eef3 50%, #b8e5ed 100%);
    border-color: #0e4950;
    box-shadow: 0 12px 32px rgba(31, 162, 166, 0.25);
    transform: translateY(-5px);
  }

  .service-card h4 {
    color: #0e4950;
    text-shadow: none;
    background: linear-gradient(135deg, #1fa2a6, #0e4950);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .service-card p {
    color: #1a2326;
    text-shadow: none;
  }

  /* Amélioration des boutons pour le tactile avec des tons bleu-vert doux */
  .cta, .service-card .cta, .cta-header {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 20px;
    font-size: 16px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    background: linear-gradient(135deg, #1fa2a6 0%, #0e4950 100%);
    box-shadow: 0 4px 15px rgba(31, 162, 166, 0.3);
  }

  .cta:hover, .service-card .cta:hover, .cta-header:hover {
    background: linear-gradient(135deg, #0e4950 0%, #1fa2a6 100%);
    box-shadow: 0 6px 20px rgba(31, 162, 166, 0.4);
    transform: translateY(-2px);
  }

  /* Amélioration des champs de formulaire */
  input, textarea, select {
    min-height: 44px;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    -webkit-appearance: none;
    appearance: none;
  }

  /* Optimisation des images */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Amélioration de la navigation */
  .nav-links li a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    touch-action: manipulation;
  }

  /* Optimisation du footer */
  .footer-section a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
  }
}

/* Optimisations pour les très petits écrans */
@media (max-width: 480px) {
  /* Réduction des marges et paddings */
  .accueil-hero {
    padding: 0.5rem;
  }

  .accueil-col {
    padding: 1.5rem 1rem;
  }

  .services {
    padding: 1rem 0.5rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }

  /* Amélioration de la typographie */
  .presentation-courte h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .presentation-courte h2 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .service-card h4 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Optimisation des boutons */
  .service-card .cta {
    padding: 10px 16px;
    font-size: 14px;
    min-height: 40px;
  }
}

/* Optimisations pour les écrans moyens (tablettes) */
@media (min-width: 769px) and (max-width: 1024px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .service-card {
    padding: 2.5rem 2rem;
    min-height: 320px;
  }

  .service-card h4 {
    font-size: 1.5rem;
  }

  .service-card p {
    font-size: 1rem;
  }
}

/* Amélioration de l'accessibilité mobile */
@media (max-width: 768px) {
  /* Focus visible pour la navigation au clavier */
  .nav-links li a:focus,
  .service-card .cta:focus,
  .cta-header:focus {
    outline: 3px solid #1fa2a6;
    outline-offset: 2px;
  }

  /* Amélioration du contraste avec des tons bleu-vert doux */
  .phone {
    background: linear-gradient(135deg, rgba(234, 246, 250, 0.8), rgba(212, 238, 243, 0.6));
    border: 2px solid #1fa2a6;
    color: #0e4950;
    box-shadow: 0 4px 12px rgba(31, 162, 166, 0.2);
  }

  .phone:hover,
  .phone:focus {
    background: linear-gradient(135deg, #1fa2a6, #0e4950);
    color: white;
    box-shadow: 0 6px 18px rgba(31, 162, 166, 0.35);
    transform: translateY(-2px);
  }

  /* Amélioration de la lisibilité */
  .qui-suis-je p,
  .service-card p {
    line-height: 1.6;
  }

  /* Optimisation des espacements */
  .mission-container {
    margin: 1.5rem 0;
  }

  .contact-quick {
    margin-top: 1.5rem;
  }
}

/* ===== SECTION RH ===== */
.rh-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.rh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.rh-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rh-header h2 {
  font-size: 2.5rem;
  color: #0e4950;
  font-weight: 700;
  margin-bottom: 1rem;
}

.rh-content {
  display: grid;
  gap: 3rem;
}

.rh-intro,
.rh-target,
.rh-benefits,
.rh-domains {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  border-left: 4px solid #1fa2a6;
}

.rh-intro h3,
.rh-target h3,
.rh-benefits h3,
.rh-domains h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.rh-intro p {
  color: #1a2326;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.rh-target ul,
.rh-benefits ul {
  list-style: none;
  padding: 0;
}

.rh-target li,
.rh-benefits li {
  color: #1a2326;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.rh-target li::before,
.rh-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1fa2a6;
  font-weight: bold;
  font-size: 1.1rem;
}

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

.domain-category {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.domain-category h4 {
  color: #0e4950;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.domain-category ul {
  list-style: none;
  padding: 0;
}

.domain-category li {
  color: #1a2326;
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.4;
  font-size: 0.95rem;
}

.domain-category li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1fa2a6;
  font-weight: bold;
}

.rh-note {
  text-align: center;
  font-style: italic;
  color: #6c757d;
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

/* Responsive pour la section RH */
@media (max-width: 768px) {
  .rh-section {
    padding: 2rem 0;
    margin: 1rem 0;
  }
  
  .rh-container {
    padding: 0 1rem;
  }
  
  .rh-header h2 {
    font-size: 2rem;
  }
  
  .rh-content {
    gap: 2rem;
  }
  
  .rh-intro,
  .rh-target,
  .rh-benefits,
  .rh-domains {
    padding: 1.5rem;
  }
  
  .domains-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .domain-category {
    padding: 1rem;
  }
}

/* ===== PAGE SOPHROLOGIE ===== */
.sophro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sophro-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.sophro-definition {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  margin-bottom: 2rem;
  border-left: 4px solid #1fa2a6;
}

.sophro-definition h2 {
  color: #0e4950;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.sophro-definition p {
  color: #1a2326;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.sophro-history {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  border-left: 4px solid #0e4950;
}

.sophro-history h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.sophro-history p {
  color: #1a2326;
  line-height: 1.6;
}

.sophro-applications {
  padding: 4rem 0;
  background: white;
}

.sophro-applications h2 {
  text-align: center;
  color: #0e4950;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

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

.application-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
  border-left: 4px solid #1fa2a6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.application-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(14, 73, 80, 0.15);
}

.application-card h3 {
  color: #0e4950;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.application-card p {
  color: #1a2326;
  line-height: 1.5;
}

.sophro-session {
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.sophro-session h2 {
  text-align: center;
  color: #0e4950;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.session-content {
  display: grid;
  gap: 2rem;
}

.session-first,
.session-following,
.session-modes,
.session-details {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  border-left: 4px solid #1fa2a6;
}

.session-first h3,
.session-following h3,
.session-modes h3,
.session-details h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.session-first p,
.session-following p {
  color: #1a2326;
  line-height: 1.6;
}

.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.mode-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  text-align: center;
}

.mode-card h4 {
  color: #0e4950;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.mode-card p {
  color: #1a2326;
  margin: 0;
}

.session-details ul {
  list-style: none;
  padding: 0;
}

.session-details li {
  color: #1a2326;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.session-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1fa2a6;
  font-weight: bold;
  font-size: 1.2rem;
}

.sophro-booking {
  background: white;
  padding: 4rem 0;
}

.sophro-booking .sophro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.booking-content h2 {
  color: #0e4950;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.booking-content p {
  color: #1a2326;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-info p {
  color: #0e4950;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.booking-visuel img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(14, 73, 80, 0.2);
}

/* Responsive pour la page sophrologie */
@media (max-width: 768px) {
  .sophro-intro,
  .sophro-applications,
  .sophro-session,
  .sophro-booking {
    padding: 2rem 0;
  }
  
  .sophro-container {
    padding: 0 1rem;
  }
  
  .sophro-definition,
  .sophro-history,
  .session-first,
  .session-following,
  .session-modes,
  .session-details {
    padding: 1.5rem;
  }
  
  .sophro-applications h2,
  .sophro-session h2 {
    font-size: 2rem;
  }
  
  .applications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .application-card {
    padding: 1.5rem;
  }
  
  .modes-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .sophro-booking .sophro-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .booking-content {
    order: 2;
  }
  
  .booking-visuel {
    order: 1;
  }
}

/* ===== PAGE CAHAYA ===== */
.cahaya-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cahaya-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.cahaya-hero .cahaya-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cahaya-description h2 {
  color: #0e4950;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.cahaya-description p {
  color: #1a2326;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cahaya-benefits {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  margin-bottom: 2rem;
  border-left: 4px solid #1fa2a6;
}

.cahaya-benefits h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cahaya-benefits ul {
  list-style: none;
  padding: 0;
}

.cahaya-benefits li {
  color: #1a2326;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.cahaya-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1fa2a6;
  font-weight: bold;
  font-size: 1.1rem;
}

.cahaya-emotional {
  background: linear-gradient(135deg, #0e4950 0%, #1fa2a6 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
}

.cahaya-emotional p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cahaya-purchase {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  text-align: center;
  border: 2px solid #1fa2a6;
}

.purchase-card h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-purchase {
  display: inline-block;
  background: #000;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 300px;
}

.cta-purchase:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.purchase-note {
  color: #1a2326;
  font-size: 0.9rem;
  margin: 0;
}

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

.cahaya-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(14, 73, 80, 0.2);
}

.cahaya-details {
  background: white;
  padding: 4rem 0;
}

.cahaya-details h2 {
  text-align: center;
  color: #0e4950;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
  border-left: 4px solid #1fa2a6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(14, 73, 80, 0.15);
}

.detail-card h3 {
  color: #0e4950;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.detail-card li {
  color: #1a2326;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.detail-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1fa2a6;
  font-weight: bold;
  font-size: 1.2rem;
}

.cahaya-precautions {
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
  padding: 3rem 0;
}

.precautions-content {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
}

.precautions-content h2 {
  color: #856404;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.precautions-content p {
  color: #856404;
  line-height: 1.6;
  margin: 0;
}

/* Responsive pour la page Cahaya */
@media (max-width: 768px) {
  .cahaya-hero,
  .cahaya-details,
  .cahaya-precautions {
    padding: 2rem 0;
  }
  
  .cahaya-container {
    padding: 0 1rem;
  }
  
  .cahaya-hero .cahaya-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cahaya-description h2 {
    font-size: 2rem;
  }
  
  .cahaya-benefits,
  .cahaya-emotional,
  .cahaya-purchase {
    padding: 1.5rem;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .detail-card {
    padding: 1.5rem;
  }
  
  .precautions-content {
    padding: 1.5rem;
  }
}

/* ===== PAGE APPUI RH ===== */
.rh-contact {
  background: linear-gradient(135deg, #0e4950 0%, #1fa2a6 100%);
  padding: 4rem 0;
  color: white;
}

.rh-contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.rh-contact p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.rh-contact .cta-container {
  text-align: center;
}

.rh-contact .cta {
  display: inline-block;
  background: white;
  color: #0e4950;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.rh-contact .cta:hover {
  background: #f8f9fa;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive pour la page Appui RH */
@media (max-width: 768px) {
  .rh-contact {
    padding: 2rem 0;
  }
  
  .rh-contact h2 {
    font-size: 2rem;
  }
  
  .rh-contact p {
    font-size: 1.2rem;
  }
}

/* ===== PAGES LÉGALES ===== */
.legal-content {
  background: white;
  padding: 4rem 0;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid #1fa2a6;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
}

.legal-section h2 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-section p {
  color: #1a2326;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-section ul {
  color: #1a2326;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section strong {
  color: #0e4950;
  font-weight: 600;
}

/* Responsive pour les pages légales */
@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 0;
  }
  
  .legal-container {
    padding: 0 1rem;
  }
  
  .legal-section {
    padding: 1.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
}

/* ===== PAGE BYE BYE C ===== */
.byebye-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.byebye-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.byebye-hero .byebye-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.byebye-description h2 {
  color: #0e4950;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.byebye-description p {
  color: #1a2326;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.byebye-process {
  background: linear-gradient(135deg, #0e4950 0%, #1fa2a6 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
}

.byebye-process p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.byebye-features {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  margin-bottom: 2rem;
  border-left: 4px solid #1fa2a6;
}

.byebye-features h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

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

.feature-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: #0e4950;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-card p {
  color: #1a2326;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.byebye-approach {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #ffeaa7;
  margin-bottom: 2rem;
}

.byebye-approach h3 {
  color: #856404;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.byebye-approach p {
  color: #856404;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.byebye-purchase {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  text-align: center;
  border: 2px solid #1fa2a6;
}

.purchase-card h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-purchase {
  display: inline-block;
  background: #000;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 300px;
}

.cta-purchase:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.purchase-note {
  color: #1a2326;
  font-size: 0.9rem;
  margin: 0;
}

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

.byebye-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(14, 73, 80, 0.2);
}

.byebye-details {
  background: white;
  padding: 4rem 0;
}

.byebye-details h2 {
  text-align: center;
  color: #0e4950;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
  border-left: 4px solid #1fa2a6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(14, 73, 80, 0.15);
}

.detail-card h3 {
  color: #0e4950;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.detail-card li {
  color: #1a2326;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.detail-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1fa2a6;
  font-weight: bold;
  font-size: 1.2rem;
}

.byebye-precautions {
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
  padding: 3rem 0;
}

.precautions-content {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
}

.precautions-content h2 {
  color: #856404;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.precautions-content p {
  color: #856404;
  line-height: 1.6;
  margin: 0;
}

/* Responsive pour la page Bye Bye C */
@media (max-width: 768px) {
  .byebye-hero,
  .byebye-details,
  .byebye-precautions {
    padding: 2rem 0;
  }
  
  .byebye-container {
    padding: 0 1rem;
  }
  
  .byebye-hero .byebye-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .byebye-description h2 {
    font-size: 2rem;
  }
  
  .byebye-features,
  .byebye-process,
  .byebye-approach,
  .byebye-purchase {
    padding: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .detail-card {
    padding: 1.5rem;
  }
  
  .precautions-content {
    padding: 1.5rem;
  }
}

/* ===== PAGE APPUI RH ===== */
.rh-contact {
  background: linear-gradient(135deg, #0e4950 0%, #1fa2a6 100%);
  padding: 4rem 0;
  color: white;
}

.rh-contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.rh-contact p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.rh-contact .cta-container {
  text-align: center;
}

.rh-contact .cta {
  display: inline-block;
  background: white;
  color: #0e4950;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.rh-contact .cta:hover {
  background: #f8f9fa;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive pour la page Appui RH */
@media (max-width: 768px) {
  .rh-contact {
    padding: 2rem 0;
  }
  
  .rh-contact h2 {
    font-size: 2rem;
  }
  
  .rh-contact p {
    font-size: 1.2rem;
  }
}

/* ===== PAGES LÉGALES ===== */
.legal-content {
  background: white;
  padding: 4rem 0;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid #1fa2a6;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
}

.legal-section h2 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-section p {
  color: #1a2326;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-section ul {
  color: #1a2326;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section strong {
  color: #0e4950;
  font-weight: 600;
}

/* Responsive pour les pages légales */
@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 0;
  }
  
  .legal-container {
    padding: 0 1rem;
  }
  
  .legal-section {
    padding: 1.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
}

/* ===== PAGE JIWA ===== */
.jiwa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.jiwa-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.jiwa-hero .jiwa-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.jiwa-description h2 {
  color: #0e4950;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.jiwa-description p {
  color: #1a2326;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.jiwa-process {
  background: linear-gradient(135deg, #0e4950 0%, #1fa2a6 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
}

.jiwa-process p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.jiwa-benefits {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  margin-bottom: 2rem;
  border-left: 4px solid #1fa2a6;
}

.jiwa-benefits h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.jiwa-benefits ul {
  list-style: none;
  padding: 0;
}

.jiwa-benefits li {
  color: #1a2326;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.jiwa-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1fa2a6;
  font-weight: bold;
  font-size: 1.1rem;
}

.jiwa-purchase {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  text-align: center;
  border: 2px solid #1fa2a6;
}

.purchase-card h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-purchase {
  display: inline-block;
  background: #000;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 300px;
}

.cta-purchase:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.purchase-note {
  color: #1a2326;
  font-size: 0.9rem;
  margin: 0;
}

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

.jiwa-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(14, 73, 80, 0.2);
}

.jiwa-details {
  background: white;
  padding: 4rem 0;
}

.jiwa-details h2 {
  text-align: center;
  color: #0e4950;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
  border-left: 4px solid #1fa2a6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(14, 73, 80, 0.15);
}

.detail-card h3 {
  color: #0e4950;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.detail-card li {
  color: #1a2326;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.detail-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1fa2a6;
  font-weight: bold;
  font-size: 1.2rem;
}

.jiwa-precautions {
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
  padding: 3rem 0;
}

.precautions-content {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
}

.precautions-content h2 {
  color: #856404;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.precautions-content p {
  color: #856404;
  line-height: 1.6;
  margin: 0;
}

/* Responsive pour la page Jiwa */
@media (max-width: 768px) {
  .jiwa-hero,
  .jiwa-details,
  .jiwa-precautions {
    padding: 2rem 0;
  }
  
  .jiwa-container {
    padding: 0 1rem;
  }
  
  .jiwa-hero .jiwa-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .jiwa-description h2 {
    font-size: 2rem;
  }
  
  .jiwa-benefits,
  .jiwa-process,
  .jiwa-purchase {
    padding: 1.5rem;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .detail-card {
    padding: 1.5rem;
  }
  
  .precautions-content {
    padding: 1.5rem;
  }
}

/* ===== PAGE APPUI RH ===== */
.rh-contact {
  background: linear-gradient(135deg, #0e4950 0%, #1fa2a6 100%);
  padding: 4rem 0;
  color: white;
}

.rh-contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.rh-contact p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.rh-contact .cta-container {
  text-align: center;
}

.rh-contact .cta {
  display: inline-block;
  background: white;
  color: #0e4950;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.rh-contact .cta:hover {
  background: #f8f9fa;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive pour la page Appui RH */
@media (max-width: 768px) {
  .rh-contact {
    padding: 2rem 0;
  }
  
  .rh-contact h2 {
    font-size: 2rem;
  }
  
  .rh-contact p {
    font-size: 1.2rem;
  }
}

/* ===== PAGES LÉGALES ===== */
.legal-content {
  background: white;
  padding: 4rem 0;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid #1fa2a6;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
}

.legal-section h2 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-section p {
  color: #1a2326;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-section ul {
  color: #1a2326;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section strong {
  color: #0e4950;
  font-weight: 600;
}

/* Responsive pour les pages légales */
@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 0;
  }
  
  .legal-container {
    padding: 0 1rem;
  }
  
  .legal-section {
    padding: 1.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
}

/* ===== PAGE BYE BYE C ===== */
.byebye-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.byebye-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.byebye-hero .byebye-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.byebye-description h2 {
  color: #0e4950;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.byebye-description p {
  color: #1a2326;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.byebye-process {
  background: linear-gradient(135deg, #0e4950 0%, #1fa2a6 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
}

.byebye-process p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.byebye-features {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  margin-bottom: 2rem;
  border-left: 4px solid #1fa2a6;
}

.byebye-features h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

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

.feature-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: #0e4950;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-card p {
  color: #1a2326;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.byebye-approach {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #ffeaa7;
  margin-bottom: 2rem;
}

.byebye-approach h3 {
  color: #856404;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.byebye-approach p {
  color: #856404;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.byebye-purchase {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 73, 80, 0.1);
  text-align: center;
  border: 2px solid #1fa2a6;
}

.purchase-card h3 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-purchase {
  display: inline-block;
  background: #000;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 300px;
}

.cta-purchase:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.purchase-note {
  color: #1a2326;
  font-size: 0.9rem;
  margin: 0;
}

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

.byebye-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(14, 73, 80, 0.2);
}

.byebye-details {
  background: white;
  padding: 4rem 0;
}

.byebye-details h2 {
  text-align: center;
  color: #0e4950;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
  border-left: 4px solid #1fa2a6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(14, 73, 80, 0.15);
}

.detail-card h3 {
  color: #0e4950;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.detail-card li {
  color: #1a2326;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.detail-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1fa2a6;
  font-weight: bold;
  font-size: 1.2rem;
}

.byebye-precautions {
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
  padding: 3rem 0;
}

.precautions-content {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
}

.precautions-content h2 {
  color: #856404;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.precautions-content p {
  color: #856404;
  line-height: 1.6;
  margin: 0;
}

/* Responsive pour la page Bye Bye C */
@media (max-width: 768px) {
  .byebye-hero,
  .byebye-details,
  .byebye-precautions {
    padding: 2rem 0;
  }
  
  .byebye-container {
    padding: 0 1rem;
  }
  
  .byebye-hero .byebye-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .byebye-description h2 {
    font-size: 2rem;
  }
  
  .byebye-features,
  .byebye-process,
  .byebye-approach,
  .byebye-purchase {
    padding: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .detail-card {
    padding: 1.5rem;
  }
  
  .precautions-content {
    padding: 1.5rem;
  }
}

/* ===== PAGE APPUI RH ===== */
.rh-contact {
  background: linear-gradient(135deg, #0e4950 0%, #1fa2a6 100%);
  padding: 4rem 0;
  color: white;
}

.rh-contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.rh-contact p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.rh-contact .cta-container {
  text-align: center;
}

.rh-contact .cta {
  display: inline-block;
  background: white;
  color: #0e4950;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.rh-contact .cta:hover {
  background: #f8f9fa;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive pour la page Appui RH */
@media (max-width: 768px) {
  .rh-contact {
    padding: 2rem 0;
  }
  
  .rh-contact h2 {
    font-size: 2rem;
  }
  
  .rh-contact p {
    font-size: 1.2rem;
  }
}

/* ===== PAGES LÉGALES ===== */
.legal-content {
  background: white;
  padding: 4rem 0;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid #1fa2a6;
  box-shadow: 0 5px 15px rgba(14, 73, 80, 0.1);
}

.legal-section h2 {
  color: #0e4950;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-section p {
  color: #1a2326;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-section ul {
  color: #1a2326;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section strong {
  color: #0e4950;
  font-weight: 600;
}

/* Responsive pour les pages légales */
@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 0;
  }
  
  .legal-container {
    padding: 0 1rem;
  }
  
  .legal-section {
    padding: 1.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
} 