/* RESET DE BASE + BODY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
html, body { height: 100%; }
body.services-page {
  color: white;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  min-height: 100vh;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-x: hidden;
  padding-top: 100px;
  padding-bottom: 50px;
  font-size: 36px;
}

:root {
  --card-c1: #8E2DE2;
  --card-c2: #4A00E0;
  --card-c3: #FF6FD8;
}

.hero-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.retour-button {
  display: inline-block;
  margin: 30px auto 0;
  padding: 10px 20px;
  background-color: #006A80;
  color: white;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.retour-button:hover { background-color: #004f60; }

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}
.main-title {
  font-size: 48px;
  font-weight: bold;
  margin: 20px auto 20px auto;
  text-align: center;
}
.intro {
  font-size: 26px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
  text-align: center;
}

.offers-container {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.offer-card {
  position: relative;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-align: center;
  color: #fff;
  background: linear-gradient(45deg, var(--card-c1), var(--card-c2), var(--card-c3));
  background-size: 300% 300%;
  animation: gradientAnim 8s ease infinite;
  flex: 1 1 200px;
  
  margin-bottom: 16px;
}
.offer-title {
  font-size: 32px;
  margin-bottom: 15px;
  color: white;
  text-align: center;
}
.offer-intro {
  font-size: 22px;
  margin-bottom: 10px;

}
.offer-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 15px;
  color: #f0f0f0;
  text-align: left;

}
.offer-list li {
  font-size: 28px;
  margin-bottom: 8px;
}

/* Animation du gradient */
@keyframes gradientAnim {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

.extensions-card {
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px 20px;
  max-width: 100%;
  margin: 40px auto 50px;
    background: linear-gradient(45deg, var(--card-c1), var(--card-c2), var(--card-c3));
  background-size: 300% 300%;
  animation: gradientAnim 8s ease infinite;
}
.extensions-card .offer-title {
  font-size: 28px;
}

.detail-section {
  background-color: rgba(255,255,255,0.10);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  max-width: 100%;
  margin: 40px auto 50px;
}
.detail-title {
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff;
}
.detail-block {
  margin-bottom: 30px;
  font-size: 24px;
}
.block-title {
  font-size: 30px;
  color: #fff;
  margin-bottom: 12px;
}
.detail-text {
  font-size: 26px;
  color: #f0f0f0;
  margin-bottom: 10px;
}
.detail-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 15px;
  color: #f0f0f0;
  text-align: left;
}
.detail-list li {
  font-size: 26px;
  margin-bottom: 8px;
}
.cta-final {
  background-color: rgba(255,255,255,0.07);
  border-radius: 18px;
  margin-bottom: 28px;
  padding: 24px 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.11);
  text-align: center;
}
.cta-final h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}
.cta-button {
  display: inline-block;
  margin: 20px auto 0;
  padding: 15px 30px;
  background-color: #006A80;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-decoration: none;
}
.logo {
  height: 100px;
  max-width: 80vw;
  background-color: transparent;
  transition: none;
  display: block;
  margin: 0 auto;
}
.cta-button:hover { background-color: #004f60; }

.fade-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s ease forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }



/* RESET DE BASE + BODY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
html, body { height: 100%; }

body.services-page {
  color: white;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  min-height: 100vh;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-x: hidden;
  padding-top: 100px;
  padding-bottom: 50px;
  font-size: 36px;
}

:root {
  --card-c1: #8E2DE2;
  --card-c2: #4A00E0;
  --card-c3: #FF6FD8;
}

.hero-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.retour-button {
  margin: 30px auto 0;
  padding: 10px 20px;
  background-color: #006A80;
  color: white;
  border-radius: 25px;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.retour-button:hover { background-color: #004f60; }

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-title { font-size: 48px; margin: 20px auto; }
.intro { font-size: 26px; margin: 0 auto 40px; color: #f0f0f0; }

.offers-container-vertical {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
  justify-content: center;
}

.offer-card, .extensions-card {
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(45deg, var(--card-c1), var(--card-c2), var(--card-c3));
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  background-size: 300% 300%;
  animation: gradientAnim 8s ease infinite;
}

.offer-title { font-size: 32px; margin-bottom: 15px; }
.offer-intro { font-size: 22px; margin-bottom: 10px; }
.offer-list { padding-left: 25px; text-align: left; }
.offer-list li { font-size: 28px; margin-bottom: 8px; }

/* Animation gradient */
@keyframes gradientAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Garde tous les autres styles CSS existants (responsive, fade-in, détails, etc.) inchangés. */

/* Responsive (inchangé) */
/* ... (conserve les règles responsive de ton code original) ... */

/* Responsive Design */
@media (max-width: 1100px) {
  .main-title { font-size: 60px; }
 
  .offers-container { flex-direction: column; gap: 25px; }
  .offer-card { width: 100%; max-width: 98vw; font-size: 40px; }
  .retour-button{font-size: 30px;}
  .intro{font-size: 29px;}
  .offer-intro{font-size: 34px;}
  
}
@media (max-width: 800px) {
  body { font-size: 15px; padding-top: 70px; }
  .main-title { font-size: 26px; }
  .detail-title { font-size: 24px; }
  .offer-title, .block-title { font-size: 20px; }
  .cta-button { font-size: 16px; padding: 10px 16px; }
  .content-wrapper, .extensions-card, .detail-section { padding: 14px 6px; }
  .offers-container { flex-direction: column; gap: 16px; }
  .offer-card { width: 100%; min-width: 0; flex:1 1 100px; }
  .intro { font-size: 17px; }
  .detail-block { font-size: 17px; }
  
  
  
}
@media (max-width: 600px) {
  body { padding: 20px 0; }
  .main-title { font-size: 18px; }
  .content-wrapper { padding: 0 4vw; }
  .offer-title { font-size: 15px; }
  .cta-button { font-size: 14px; padding: 8px 10px; }
  .intro { font-size: 15px; }
  .detail-title, .block-title { font-size: 16px; }
  
  
}
