/* ========================================
   WOMENCY ADDITIONAL CSS
   CSS Global pour le site statique
   ======================================== */

/* Variables supplémentaires */
:root {
  --womency-gradient-alt: linear-gradient(45deg, #FF8E9E 0%, #FFA7C8 50%, #FFC88F 100%);
  --womency-overlay: rgba(255, 116, 162, 0.95);
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --border-radius-xl: 25px;
  --shadow-xl: 0 20px 60px rgba(255, 116, 162, 0.15);
}

/* ======================================== 
   SECTIONS HERO
   ======================================== */

.hero-main {
  background: var(--womency-gradient);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-main::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120"><path fill="%23ffffff" d="M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,120L1360,120C1280,120,1120,120,960,120C800,120,640,120,480,120C320,120,160,120,80,120L0,120Z"></path></svg>') no-repeat bottom;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-main {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-hero-primary {
  background: white;
  color: var(--womency-pink);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  color: var(--womency-pink-dark);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: white;
  color: var(--womency-pink);
  transform: translateY(-3px);
}

/* ======================================== 
   SECTIONS PILLIERS
   ======================================== */

.pillars-section {
  padding: 5rem 0;
  background: #fafbfc;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.pillar-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--womency-gradient);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 116, 162, 0.2);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  background: var(--womency-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.pillar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.pillar-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pillar-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pillar-features li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pillar-features li::before {
  content: '✓';
  color: var(--womency-pink);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ======================================== 
   SECTION TÉMOIGNAGES
   ======================================== */

.testimonials-section {
  padding: 5rem 0;
  background: white;
  position: relative;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--womency-pink);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--womency-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.testimonial-role {
  color: var(--womency-pink);
  font-size: 0.9rem;
}

/* ======================================== 
   SECTION FONDATRICE
   ======================================== */

.founder-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
}

.founder-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.founder-image-wrapper {
  position: relative;
}

.founder-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.founder-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--womency-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 116, 162, 0.3);
}

.founder-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.founder-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.founder-signature {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--womency-pink);
  margin-top: 2rem;
}

/* ======================================== 
   GRILLES DE PROGRAMMES
   ======================================== */

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.program-card-static {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.program-card-static:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 116, 162, 0.25);
}

.program-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--womency-gradient);
}

.program-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card-static:hover .program-image {
  transform: scale(1.1);
}

.program-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  color: var(--womency-pink);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.program-content {
  padding: 1.5rem;
}

.program-category {
  color: var(--womency-pink);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.program-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.program-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.program-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.program-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.program-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--womency-pink);
}

/* ======================================== 
   PRICING CARDS
   ======================================== */

.pricing-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 116, 162, 0.3);
}

.pricing-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--womency-gradient);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-plan {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--womency-pink);
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: #28a745;
  font-size: 1.2rem;
}

/* ======================================== 
   FORMULAIRES
   ======================================== */

.form-section {
  padding: 5rem 0;
  background: white;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--womency-pink);
  box-shadow: 0 0 0 3px rgba(255, 116, 162, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--womency-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 116, 162, 0.3);
}

/* ======================================== 
   BLOG CARDS
   ======================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 200px;
  background: var(--womency-gradient);
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  color: var(--womency-pink);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  color: var(--womency-pink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more {
  gap: 1rem;
}

/* ======================================== 
   FAQ ACCORDION
   ======================================== */

.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--womency-pink);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--womency-pink);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ======================================== 
   GUIDES GRATUITS
   ======================================== */

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.guide-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 116, 162, 0.2);
}

.guide-icon {
  width: 80px;
  height: 80px;
  background: var(--womency-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.guide-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.guide-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.guide-download-btn {
  background: var(--womency-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.guide-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 116, 162, 0.3);
}

/* ======================================== 
   TEAM SECTION
   ======================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--womency-gradient);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  font-weight: bold;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--womency-pink);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--womency-pink);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--womency-gradient);
  color: white;
  transform: translateY(-3px);
}

/* ======================================== 
   CTA SECTIONS
   ======================================== */

.cta-section {
  padding: 5rem 0;
  background: var(--womency-gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================== 
   NEWSLETTER
   ======================================== */

.newsletter-box {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 3rem auto;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.newsletter-text {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--womency-pink);
  box-shadow: 0 0 0 3px rgba(255, 116, 162, 0.1);
}

.newsletter-submit {
  padding: 0.75rem 2rem;
  background: var(--womency-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 116, 162, 0.3);
}

/* ======================================== 
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ======================================== 
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .hero-title-main { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-cta-group { flex-direction: column; width: 100%; padding: 0 1rem; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  
  .pillars-grid { grid-template-columns: 1fr; }
  .testimonials-carousel { grid-template-columns: 1fr; }
  .founder-container { grid-template-columns: 1fr; gap: 2rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .team-grid { grid-template-columns: 1fr; }
  
  .newsletter-form { flex-direction: column; }
  .newsletter-input, .newsletter-submit { width: 100%; }
  
  .cta-title { font-size: 2rem; }
  .cta-buttons { flex-direction: column; width: 100%; padding: 0 1rem; }
  .cta-buttons a { width: 100%; justify-content: center; }
}