/* ========================================
   PAGE ACCUEIL - Style Flib
   ======================================== */

/* Hero Section - Style Flib fullscreen avec image arrondie */
.hero {
  position: relative;
  height: 100vh;
  background-color: #F5FBFA;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  position: relative;
  width: calc(100% - 48px);
  max-width: 1809px;
  height: calc(100vh - 48px);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(32, 54, 74, 0.15);
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(32, 54, 74, 0.7) 0%, rgba(44, 72, 91, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-body);
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--color-white);
  max-width: 900px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
}

/* Bouton CTA Hero - Style Flib */
.hero-cta {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 14px 36px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: capitalize;
  box-shadow: 0 6px 20px rgba(107, 193, 175, 0.3);
  text-decoration: none;
}

.hero-cta:hover {
  background-color: #5FAAA0;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(107, 193, 175, 0.5);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 32px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
}

.hero-scroll::after {
  content: '';
  width: 5px;
  height: 10px;
  background-color: var(--color-accent);
  border-radius: 2px;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(18px);
    opacity: 0.3;
  }
}

/* Services Section - Style Flib */
.services-section {
  padding: 100px 0;
  background-color: #F5FBFA;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: block;
}

.services-title {
  font-family: var(--font-body);
  font-size: 42px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  font-weight: 400;
}

.services-description {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-secondary);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

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

.service-card {
  background-color: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(32, 54, 74, 0.08);
}

.service-card:hover,
.service-card-link:hover .service-card {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(32, 54, 74, 0.15);
}

.service-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img,
.service-card-link:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 32px 28px;
}

.service-title {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.2px;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
  font-weight: 500;
}

.service-description {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-secondary);
  margin-bottom: 0;
  font-weight: 300;
}

/* ========================================
   BLOC BLEU MARINE UNIFIÉ
   ======================================== */

.dark-block {
  background-color: #1e3a4c;
}

/* Label accent commun */
.section-label-accent {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5FBFAB;
  margin-bottom: 16px;
  display: block;
}

.section-label-accent.text-center {
  text-align: center;
}

/* Bouton outline accent */
.btn-outline-accent {
  display: inline-block;
  background: transparent;
  color: #5FBFAB;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border: 2px solid #5FBFAB;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-accent:hover {
  background-color: #5FBFAB;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(95, 191, 171, 0.3);
}

/* Bouton accent plein */
.btn-accent {
  display: inline-block;
  background-color: #5FBFAB;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}

.btn-accent:hover {
  background-color: #4BA897;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(95, 191, 171, 0.3);
}

/* ========================================
   SECTION CHARON
   ======================================== */

.section-charon {
  padding: 100px 0 80px;
}

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

.charon-icon-link {
  display: inline-block;
  margin-bottom: 32px;
  transition: transform 0.3s ease;
}

.charon-icon-link:hover {
  transform: scale(1.05);
}

.charon-badge {
  width: 195px;
  height: auto;
}

.charon-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
}

.charon-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.charon-title {
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.charon-description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.charon-description a {
  color: #5FBFAB;
  text-decoration: none;
  transition: color 0.3s ease;
}

.charon-description a:hover {
  color: #ffffff;
}

.charon-description:last-of-type {
  margin-bottom: 32px;
}

/* ========================================
   SECTION MANON (Fondatrice)
   ======================================== */

.section-manon {
  padding: 80px 0;
  background-color: #F5FBFA;
}

.manon-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}

.manon-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1 / 1;
  max-width: 400px;
}

.manon-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.manon-image:hover img {
  transform: scale(1.03);
}

.manon-title {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 600;
  color: #1e3a4c;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.manon-bio {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #4a6572;
  margin-bottom: 20px;
}

.manon-quote {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #5FBFAB;
  font-style: italic;
  margin-bottom: 32px;
}

/* ========================================
   SECTION CONTACT
   ======================================== */

.section-contact {
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.contact-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5FBFAB;
}

.detail-value {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

a.detail-value:hover {
  color: #5FBFAB;
}

/* Formulaire sur fond sombre */
.contact-form-block {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group-dark {
  margin-bottom: 16px;
}

.form-group-dark input,
.form-group-dark textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.form-group-dark input::placeholder,
.form-group-dark textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group-dark input:focus,
.form-group-dark textarea:focus {
  outline: none;
  border-color: #5FBFAB;
  background: rgba(255, 255, 255, 0.15);
}

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

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablette */
@media (max-width: 1023px) {
  .hero {
    height: 100vh;
  }

  .hero-container {
    width: calc(100% - 40px);
    height: calc(100vh - 40px);
    border-radius: 24px;
  }

  .hero-content {
    padding: 60px 32px;
  }

  .hero-title {
    font-size: 44px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 17px;
    margin-bottom: 36px;
  }

  .hero-scroll {
    bottom: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Dark Block - Tablette */
  .section-charon {
    padding: 80px 0 60px;
  }

  .charon-title {
    font-size: 36px;
  }

  .charon-icon {
    width: 100px;
    height: 100px;
  }

  .manon-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .manon-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .manon-title {
    font-size: 28px;
  }


  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-form-block {
    padding: 32px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero {
    height: 100vh;
  }

  .hero-container {
    width: calc(100% - 32px);
    height: calc(100vh - 32px);
    border-radius: 20px;
  }

  .hero-content {
    padding: 40px 24px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-cta {
    padding: 13px 30px;
    font-size: 14px;
  }

  .hero-scroll {
    display: none;
  }

  .service-card {
    padding: var(--space-lg) var(--space-md);
  }

  .service-icon {
    width: 45px;
    height: 45px;
  }

  /* Dark Block - Mobile */
  .section-charon {
    padding: 60px 0 40px;
  }

  .charon-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }

  .charon-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .charon-description {
    font-size: 15px;
  }

  .section-manon,
  .section-contact {
    padding: 60px 0;
  }

  .manon-image {
    max-width: 280px;
    border-radius: 16px;
  }

  .manon-title {
    font-size: 26px;
  }

  .manon-bio,
  .manon-quote {
    font-size: 15px;
  }

  .section-label-accent {
    font-size: 12px;
  }


  .contact-title {
    font-size: 26px;
  }

  .contact-subtitle {
    font-size: 15px;
  }

  .contact-form-block {
    padding: 24px;
    border-radius: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group-dark input,
  .form-group-dark textarea {
    padding: 14px 16px;
    font-size: 14px;
  }

  .btn-outline-accent,
  .btn-accent {
    padding: 14px 28px;
    font-size: 14px;
  }
}
/* ========================================
   SECTION PROCESS / TIMELINE - Style Flib
   ======================================== */

.process-section {
  position: relative;
  overflow: hidden;
}

.process-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.process-intro {
  text-align: center;
  margin-bottom: 64px;
}

.process-intro h2 {
  font-family: var(--font-body);
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  font-weight: 400;
}

.process-intro p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-secondary);
  font-weight: 300;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 32px 20px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.process-step:hover {
  background-color: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

/* Numéro de l'étape */
.process-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #5FAAA0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(107, 193, 175, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Icône de l'étape */
.process-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* Titre de l'étape */
.process-title {
  font-family: var(--font-body);
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: -0.1px;
}

/* Description de l'étape */
.process-description {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* Animation au hover */
.process-step:hover .process-number {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(107, 193, 175, 0.5);
}

.process-step:hover .process-icon {
  opacity: 1;
  transform: scale(1.05);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablette */
@media (max-width: 1023px) {
  .process-intro h2 {
    font-size: 36px;
  }

  .process-intro p {
    font-size: 17px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-step {
    padding: 28px 16px;
  }

  .process-number {
    width: 56px;
    height: 56px;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .process-title {
    font-size: 18px;
  }

  .process-description {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .process-intro h2 {
    font-size: 32px;
  }

  .process-intro p {
    font-size: 16px;
  }

  .process-intro {
    margin-bottom: 48px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step {
    padding: 24px 16px;
  }

  .process-number {
    width: 52px;
    height: 52px;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .process-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .process-title {
    font-size: 17px;
  }

  .process-description {
    font-size: 14px;
  }
}
