/* FLUXAIN - Styles pages Approche, À propos, Contact */

/* Page Hero (commun à toutes les pages) */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(61, 122, 158, 0.2) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(61, 122, 158, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

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

.page-hero h1 {
  margin-bottom: var(--spacing-sm);
}

.page-hero .lead {
  font-size: 1.5rem;
  color: rgba(248, 249, 250, 0.85);
  margin: 0;
}

/* === PAGE APPROCHE === */

/* Section Philosophie */
.section-philosophy {
  padding: var(--spacing-xl) 0;
  background: rgba(0, 0, 0, 0.2);
}

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

.philosophy-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(248, 249, 250, 0.9);
  margin-bottom: var(--spacing-md);
}

/* Section Méthode */
.section-method {
  padding: var(--spacing-xl) 0;
}

.section-method h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.method-step {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.method-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.method-step:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-glow);
}

.method-step:hover::before {
  opacity: 1;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(93, 45, 121, 0.4) 0%, rgba(139, 77, 175, 0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
}

.method-step h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: var(--spacing-sm);
}

.method-step p {
  color: rgba(248, 249, 250, 0.8);
  line-height: 1.7;
}

/* Section Engagements */
.section-commitments {
  padding: var(--spacing-xl) 0;
  background: rgba(0, 0, 0, 0.2);
}

.section-commitments h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.commitment-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.commitment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.commitment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-glow);
}

.commitment-card:hover::before {
  transform: scaleY(1);
}

.commitment-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.commitment-card h3 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: var(--spacing-sm);
}

.commitment-card p {
  color: rgba(248, 249, 250, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* === PAGE À PROPOS === */

/* Section About */
.section-about {
  padding: var(--spacing-xl) 0;
  background: rgba(0, 0, 0, 0.2);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.profile-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  text-align: center;
  position: sticky;
  top: 100px;
}

.profile-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--gradient-primary);
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.profile-card h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: var(--spacing-xs);
}

.profile-card p {
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.profile-links {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
}

.profile-links .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: var(--spacing-md);
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(248, 249, 250, 0.85);
  margin-bottom: var(--spacing-md);
}

/* Section Journey */
.section-journey {
  padding: var(--spacing-xl) 0;
}

.journey-content {
  max-width: 900px;
  margin: 0 auto;
}

.journey-content h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.journey-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-accent);
  padding: var(--spacing-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-md);
}

.journey-item h3 {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
}

.journey-item p {
  color: rgba(248, 249, 250, 0.85);
  line-height: 1.7;
  margin: 0;
}

/* Section Values */
.section-values {
  padding: var(--spacing-xl) 0;
  background: rgba(0, 0, 0, 0.2);
}

.section-values h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-glow);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.value-card h3 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: var(--spacing-sm);
}

.value-card p {
  color: rgba(248, 249, 250, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* === PAGE CONTACT === */

/* Section Contact */
.section-contact {
  padding: var(--spacing-xl) 0;
  background: rgba(0, 0, 0, 0.2);
}

.contact-intro {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

.contact-intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(248, 249, 250, 0.85);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

/* Formulaire de contact */
.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-group label {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(248, 249, 250, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(224, 123, 57, 0.1);
}

.form-group select {
  cursor: pointer;
}

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

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(248, 249, 250, 0.6);
  text-align: center;
  margin-top: var(--spacing-sm);
}

/* Informations de contact */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
}

.contact-method {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 45, 121, 0.2);
  border-radius: var(--radius-sm);
}

.contact-method h4 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.contact-method p {
  font-size: 0.9rem;
  color: rgba(248, 249, 250, 0.7);
  margin: 0;
}

.contact-method a {
  color: var(--color-accent);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: #8B4DAF;
}

/* FAQ Contact */
.contact-faq {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
}

.contact-faq h4 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
}

.contact-faq ul {
  list-style: none;
}

.contact-faq li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 249, 250, 0.85);
  line-height: 1.6;
}

.contact-faq li:last-child {
  border-bottom: none;
}

.contact-faq strong {
  color: #FFFFFF;
  display: block;
  margin-bottom: var(--spacing-xs);
}

/* Responsive */
@media (max-width: 968px) {
  .page-hero {
    padding: 100px 0 60px;
  }

  .page-hero .lead {
    font-size: 1.25rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .profile-card {
    position: relative;
    top: 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .step-number {
    font-size: 3rem;
  }

  .profile-image {
    width: 140px;
    height: 140px;
    font-size: 3rem;
  }

  .profile-links {
    flex-direction: column;
  }

  .profile-links .btn {
    width: 100%;
  }
}
