/* ===================================
   BUSINESS RETRAITES — CSS GLOBAL
   =================================== */

/* ---- Variables & Reset ---- */
:root {
  --orange:       #E8783A;
  --orange-light: #F5A06A;
  --orange-pale:  #FFF0E6;
  --green:        #4A8C5C;
  --green-light:  #6AAE80;
  --green-pale:   #EAF5EE;
  --beige:        #F7F3EC;
  --beige-dark:   #EDE6DA;
  --noir:         #1A1A2E;
  --gris:         #5A5A72;
  --gris-light:   #9494AA;
  --blanc:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(26,26,46,0.08);
  --shadow-md:    0 6px 24px rgba(26,26,46,0.12);
  --shadow-lg:    0 12px 40px rgba(26,26,46,0.16);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  color: var(--noir);
  background: var(--blanc);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ---- Typographie ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.3;
  color: var(--noir);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { font-size: 1.05rem; color: var(--gris); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- Utilitaires ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--beige);
}

.section-orange {
  background: var(--orange-pale);
}

.section-green {
  background: var(--green-pale);
}

.section-dark {
  background: var(--noir);
  color: var(--blanc);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--blanc); }
.section-dark p   { color: #B8B8CC; }

.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }

.badge {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.badge-green {
  background: var(--green-pale);
  color: var(--green);
}

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

.section-intro h2 { margin-bottom: 18px; }
.section-intro p  { font-size: 1.1rem; }

/* ---- Boutons ---- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--blanc);
  box-shadow: 0 4px 20px rgba(232,120,58,0.35);
}

.btn-primary:hover {
  background: #D4652A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,120,58,0.4);
  color: var(--blanc);
}

.btn-secondary {
  background: var(--blanc);
  color: var(--orange);
  border: 2.5px solid var(--orange);
}

.btn-secondary:hover {
  background: var(--orange);
  color: var(--blanc);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--blanc);
  box-shadow: 0 4px 20px rgba(74,140,92,0.3);
}

.btn-green:hover {
  background: #3A7049;
  transform: translateY(-2px);
  color: var(--blanc);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.15rem;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26,26,46,0.07);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--noir);
}

.navbar-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.navbar-logo span.accent { color: var(--orange); }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gris);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--orange);
  background: var(--orange-pale);
}

.navbar-cta {
  background: var(--orange) !important;
  color: var(--blanc) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}

.navbar-cta:hover {
  background: #D4652A !important;
  transform: translateY(-1px);
}

.navbar-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.navbar-burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--noir);
  border-radius: 3px;
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--noir) 0%, #2D2D4E 60%, #1A3A2A 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 80% 50%, rgba(232,120,58,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(74,140,92,0.10) 0%, transparent 70%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.hero-shape-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -100px; right: -100px;
}

.hero-shape-2 {
  width: 300px; height: 300px;
  background: var(--green);
  bottom: -50px; left: 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,120,58,0.15);
  border: 1px solid rgba(232,120,58,0.3);
  color: var(--orange-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--blanc);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-light);
}

.hero-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange-light);
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* ---- Cards ---- */
.card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(26,26,46,0.06);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.icon-orange { background: var(--orange-pale); color: var(--orange); }
.icon-green  { background: var(--green-pale);  color: var(--green);  }

/* ---- Grid ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---- Parcours cards ---- */
.parcours-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--blanc);
}

.parcours-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.parcours-header {
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--noir), #2D2D4E);
  color: var(--blanc);
}

.parcours-letter {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange-light);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}

.parcours-body {
  padding: 28px 32px;
}

.parcours-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.parcours-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--gris);
}

.parcours-detail i { color: var(--orange); font-size: 1rem; }

/* ---- Pack cards ---- */
.pack-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--blanc);
  border: 2px solid transparent;
  position: relative;
}

.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pack-card.featured {
  border-color: var(--orange);
}

.pack-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pack-header {
  padding: 32px 32px 24px;
  background: var(--beige);
  text-align: center;
  border-bottom: 2px solid var(--beige-dark);
}

.pack-card.featured .pack-header {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-bottom-color: transparent;
}

.pack-card.featured .pack-header h3,
.pack-card.featured .pack-header .pack-tagline,
.pack-card.featured .pack-header .pack-price,
.pack-card.featured .pack-header .pack-price-sub {
  color: white !important;
}

.pack-tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--gris);
  margin-bottom: 16px;
}

.pack-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 4px;
}

.pack-price-sub {
  font-size: 0.88rem;
  color: var(--gris-light);
}

.pack-body {
  padding: 28px 32px;
}

.pack-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.97rem;
  color: var(--gris);
}

.pack-feature i {
  color: var(--green);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.pack-footer {
  padding: 0 32px 32px;
  text-align: center;
}

/* ---- Abonnements ---- */
.abonnement-card {
  border-radius: var(--radius-lg);
  background: var(--blanc);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}

.abonnement-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.abonnement-header {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  padding: 28px 32px;
  text-align: center;
  color: white;
}

.abonnement-header h3 { color: white; }
.abonnement-price {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: white;
  margin: 12px 0 4px;
}

.abonnement-body { padding: 28px 32px; }

/* ---- Témoignages ---- */
.temoignage-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,46,0.06);
  transition: var(--transition);
  position: relative;
}

.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.temoignage-quote {
  font-size: 3.5rem;
  color: var(--orange-pale);
  line-height: 1;
  font-family: 'Playfair Display', serif;
  margin-bottom: -10px;
}

.temoignage-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gris);
  margin-bottom: 24px;
  line-height: 1.8;
}

.temoignage-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.temoignage-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.temoignage-name {
  font-weight: 700;
  color: var(--noir);
  font-size: 1rem;
}

.temoignage-role {
  font-size: 0.88rem;
  color: var(--gris-light);
}

.stars {
  color: #FFA500;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* ---- Blog cards ---- */
.blog-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,46,0.06);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.blog-body { padding: 24px; }

.blog-cat {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt { font-size: 0.93rem; margin-bottom: 16px; }

.blog-link {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-link:hover { gap: 10px; }

/* ---- Checklist ---- */
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--gris);
}

.checklist li i {
  color: var(--green);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---- Process steps ---- */
.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 50px;
  width: 2px;
  height: calc(100% - 10px);
  background: linear-gradient(to bottom, var(--orange), transparent);
}

.step-num {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(232,120,58,0.3);
}

.step-content h4 { margin-bottom: 6px; }

/* ---- Formulaire contact ---- */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--noir);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  color: var(--noir);
  background: var(--blanc);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,120,58,0.1);
}

select.form-control { cursor: pointer; }

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

/* ---- Mention légale ---- */
.mention-box {
  background: var(--beige);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  font-size: 0.95rem;
  color: var(--gris);
  margin-top: 32px;
}

.mention-box strong { color: var(--noir); }

/* ---- Footer ---- */
.footer {
  background: var(--noir);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer h4 {
  color: var(--blanc);
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer ul li { margin-bottom: 10px; }

.footer ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--orange-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

/* ---- Page hero (sous-pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--noir), #2D2D4E);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 100%, rgba(232,120,58,0.1), transparent);
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--blanc); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ---- Split layout ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

/* ---- Avantages numérotés ---- */
.avantage-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--orange-pale);
  line-height: 1;
  margin-bottom: -10px;
}

/* ---- Scroll animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  .section { padding: 64px 0; }

  .navbar-menu { display: none; position: fixed; top: 76px; left: 0; right: 0; background: white; padding: 24px; flex-direction: column; gap: 4px; box-shadow: var(--shadow-md); border-top: 1px solid var(--beige-dark); }
  .navbar-menu.open { display: flex; }
  .navbar-burger { display: flex; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .pack-card.featured { order: -1; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .btn-lg { padding: 16px 30px; font-size: 1rem; }
}

/* ---- Notifications ---- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--green);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---- Smooth active nav ---- */
.navbar-menu a.page-active {
  color: var(--orange);
  background: var(--orange-pale);
}
