/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

:root {
  --hero-img: url("../images/bgg.jpg");
  --primary-blue: #2c5f8d;
  --light-blue: #5991c4;
  --dark-blue: #1a3a52;
  --accent-blue: #4a7ba7;
  --cream: #fdfbf7;
  --light-gray: #f8f9fa;
  --text-dark: #2d3748;
  --text-medium: #4a5568;
  --text-light: #718096;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

/* Navigation */
.nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed !important;
  top: 0 !important;
  bottom: auto !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(44, 95, 141, 0.08);
  padding: 18px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--light-blue);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-medium);
  font-weight: 400;
  font-size: 15px;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-menu a:not(.contact-link)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-menu a:not(.contact-link):hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary-blue);
}

.contact-link {
  background: var(--primary-blue);
  color: #ffffff !important;
  padding: 11px 24px;
  border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(44, 95, 141, 0.25);
}

.contact-link:hover {
  background: var(--dark-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.35);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  margin-top: 72px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 82, 0.85) 0%,
    rgba(44, 95, 141, 0.75) 50%,
    rgba(74, 123, 167, 0.65) 100%
  );
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.9s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 2px 3px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: 1.5px;
}

.hero-sub {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.8px;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
}

.hero-hours {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.95;
  letter-spacing: 1px;
}

/* Section Intro */
.section-intro {
  background: linear-gradient(180deg, var(--light-blue) 0%, #7ba8cc 100%);
  padding: 80px 0 100px;
  color: #ffffff;
  position: relative;
}

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

.section-title-center {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  line-height: 1.4;
}

.intro-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin: 50px 0;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.benefit-item p {
  font-size: 16px;
  line-height: 1.6;
}

.intro-cta-text {
  font-size: 18px;
  font-style: italic;
  margin-top: 40px;
  opacity: 0.95;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--cream);
  border-top-left-radius: 120px 40px;
  border-top-right-radius: 120px 40px;
}

/* Sections générales */
section {
  padding: 95px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background: var(--light-blue);
}

.section-title-white {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 45px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
}

/* Section À propos */
.section-apropos {
  background: var(--cream);
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.text-content p {
  margin-bottom: 18px;
  line-height: 1.85;
  color: var(--text-medium);
}

.custom-list {
  margin: 25px 0 25px 30px;
  line-height: 2;
}

.custom-list li {
  margin-bottom: 10px;
  color: var(--text-medium);
}

.highlight-text {
  font-size: 17px;
  margin-top: 25px;
  color: var(--primary-blue);
}

.photo-frame {
  position: relative;
}

.photo-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  z-index: 0;
}

.photo-frame img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

/* Boutons */
.btn-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
  letter-spacing: 0.3px;
  font-size: 16px;
}

.btn-primary:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
}

.btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-size: 16px;
}

.btn-secondary:hover {
  background: #ffffff;
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-size: 16px;
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 50px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* Section Motifs */
.section-motifs {
  background: #ffffff;
}

.motifs-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.motif-group {
  margin-bottom: 28px;
}

.motif-title {
  color: var(--accent-blue);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.motif-group p {
  color: var(--text-medium);
  line-height: 1.8;
}

.simple-list {
  margin-left: 25px;
  line-height: 1.9;
  color: var(--text-medium);
}

.simple-list li {
  margin-bottom: 8px;
}

.emphasis-text {
  margin-top: 25px;
  font-weight: 600;
  color: var(--text-dark);
}

.motifs-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Section Pour qui */
.section-pourqui {
  background: var(--light-gray);
}

.pourqui-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.icon-list {
  list-style: none;
  margin-top: 30px;
}

.icon-list li {
  margin-bottom: 22px;
  padding-left: 35px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.icon-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--light-blue);
  font-weight: bold;
  font-size: 20px;
}

.list-label {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 5px;
  font-size: 17px;
}

.list-desc {
  color: var(--text-medium);
  font-size: 15px;
}

.pourqui-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Section Déroulement */
.section-deroulement {
  background: #ffffff;
}

.deroulement-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.timeline-duration {
  display: inline-block;
  background: var(--light-blue);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 14px;
}

.process-steps {
  margin: 35px 0;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.step-number {
  background: var(--primary-blue);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
  font-size: 18px;
}

.step p {
  color: var(--text-medium);
  line-height: 1.8;
  padding-top: 8px;
}

.deroulement-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Section Tarifs */
.section-tarifs {
  background: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--primary-blue) 50%,
    var(--accent-blue) 100%
  );
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-tarifs::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.tarifs-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tarifs-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 45px 0;
  flex-wrap: wrap;
}

.tarif-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 35px 45px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 280px;
}

.tarif-label {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0.95;
}

.tarif-prix {
  font-size: 42px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.tarifs-info {
  font-size: 16px;
  margin: 35px 0;
  opacity: 0.92;
  line-height: 1.7;
}

.tarifs-paiement {
  margin: 30px 0;
  font-size: 16px;
}

.tarifs-separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 45px auto;
  width: 50%;
}

.tarifs-remboursement p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.9;
  max-width: 750px;
  margin: 0 auto 35px;
}

/* Section Avis */
.section-avis {
  background: var(--cream);
}

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

.avis-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(44, 95, 141, 0.08);
  transition: all 0.3s ease;
}

.avis-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.avis-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.avis-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 16px;
  flex-shrink: 0;
}

.avis-info {
  flex: 1;
}

.avis-nom {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.avis-source {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

.avis-stars {
  color: #f59e0b;
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.avis-text {
  line-height: 1.75;
  color: var(--text-medium);
  font-size: 15px;
}

/* Section FAQ */
.section-faq {
  background: #ffffff;
}

.faq-container {
  max-width: 950px;
  margin: 50px auto 0;
}

.faq-item {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 18px;
  cursor: pointer;
  border: 1px solid rgba(44, 95, 141, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--light-blue);
  box-shadow: 0 4px 20px rgba(44, 95, 141, 0.08);
}

.faq-item summary {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  margin-right: 15px;
  font-weight: bold;
  font-size: 28px;
  color: var(--light-blue);
  flex-shrink: 0;
  width: 30px;
}

.faq-item[open] summary::before {
  content: "−";
}

.faq-item[open] {
  background: #ffffff;
  box-shadow: 0 6px 25px rgba(44, 95, 141, 0.1);
}

.faq-content {
  margin-top: 20px;
  line-height: 1.85;
  color: var(--text-medium);
  padding-left: 45px;
}

.faq-content p {
  margin-bottom: 15px;
}

/* Section CTA */
.section-cta {
  background: var(--light-gray);
}

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

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  color: var(--primary-blue);
  margin-bottom: 25px;
  font-weight: 600;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-list {
  text-align: left;
  max-width: 750px;
  margin: 0 auto 35px;
  line-height: 2.2;
  list-style-position: inside;
}

.cta-list li {
  margin-bottom: 15px;
  color: var(--text-medium);
}

.cta-conclusion {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 40px;
  color: var(--text-medium);
}

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

/* Section Contact */
.section-contact {
  background: #ffffff;
}

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

.contact-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 25px;
  font-weight: 600;
}

.info-list {
  list-style: none;
  margin-bottom: 35px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  line-height: 1.7;
  color: var(--text-medium);
}

.info-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.contact-map {
  margin-top: 30px;
}

.contact-map iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-methods {
  margin-top: 35px;
}

.method-item {
  display: flex;
  gap: 20px;
  background: var(--light-gray);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.method-item:hover {
  box-shadow: 0 4px 20px rgba(44, 95, 141, 0.1);
  transform: translateX(5px);
}

.method-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.method-content h4 {
  color: var(--primary-blue);
  margin-bottom: 5px;
  font-size: 18px;
}

.method-content p {
  color: var(--text-medium);
  margin-bottom: 8px;
  font-size: 14px;
}

.method-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 15px;
}

.method-link:hover {
  color: var(--dark-blue);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.floating-buttons {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px;
  border-radius: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(44, 95, 141, 0.1);
}

.floating-btn {
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-btn-primary {
  background: var(--primary-blue);
  color: #ffffff;
}

.floating-btn-primary:hover {
  background: var(--dark-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(44, 95, 141, 0.3);
}

.floating-btn-phone {
  background: #ffffff;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.floating-btn-phone:hover {
  background: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 15px;
    left: 15px;
    right: 15px;
    transform: none;
  }

  .floating-buttons {
    justify-content: center;
    padding: 10px;
  }

  .floating-btn {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* Footer */
.site-footer {
  background: #ffffff;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(44, 95, 141, 0.1);
}

.footer-text {
  color: var(--text-medium);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    text-align: center;
    padding: 10px 0;
  }

  .nav {
    position: relative;
  }

  .hero {
    height: 500px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-sub {
    font-size: 22px;
  }

  .intro-benefits {
    grid-template-columns: 1fr;
  }

  .apropos-grid,
  .motifs-grid,
  .pourqui-grid,
  .deroulement-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .photo-frame::before {
    display: none;
  }

  .avis-grid {
    grid-template-columns: 1fr;
  }

  .tarifs-cards {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }

  .cta-buttons > * {
    flex: 1;
    max-width: 180px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 18px;
  }

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

  .section-title-center,
  .section-title-white {
    font-size: 28px;
  }

  .cta-title {
    font-size: 30px;
  }
}
