/* ============================================================
   TAÏQO Consulting — service-coaching.css — ADD-ON PREMIUM
   Hérite de styles.css
   ============================================================ */

/* ----------- SERVICE HIGHLIGHT CARD ----------- */
.service-highlight-card {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  margin: 2rem auto;
  max-width: 1100px;
}

.service-photo img {
  max-width: 260px;
  width: 100%;
  border-radius: var(--radius-sm);
}

.service-content {
  flex: 1 1 350px;
}

.content-title {
  font-size: 2rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.service-highlight-card .content-title {
  font-size: 1.8rem;
}

.highlight-desc {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.6;
}

.service-values {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.value-badge {
  background: var(--color-bg-light);
  color: var(--color-primary);
  padding: .5rem 1rem;
  border-radius: 20px;
  font-size: .95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ----------- SERVICE SECTION (ALT BG) ----------- */
.service-section.alt-bg {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.service-section.alt-bg hr {
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--color-gold) 60%, var(--color-primary) 100%);
  border: none;
  margin-bottom: 2.5rem;
  border-radius: 4px;
}

/* Cards coaching */
.coaching-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.coaching-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-gold-light);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-content {
  flex: 1;
}

.content-subtitle {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.card-lead {
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--color-navy);
}

.coaching-card p {
  font-size: 1rem;
  color: var(--color-text);
}

/* ----------- TEAM COACHING SECTION ----------- */
.team-coaching-section {
  max-width: 1100px;
  margin: 4rem auto;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.team-coaching-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.team-coaching-icon {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.team-coaching-header h2 {
  font-size: 2.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  color: var(--color-white);
}

.team-coaching-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.team-coaching-benefits,
.team-coaching-steps {
  flex: 1 1 400px;
}

.team-coaching-benefits .highlight-desc {
  color: var(--color-bg-light);
  margin-bottom: 1.5rem;
}

.benefits-title,
.steps-title {
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.benefits-list li i {
  color: var(--color-gold);
}

.steps-list {
  list-style: none;
  padding: 0;
}

.steps-list li {
  background: rgba(255,255,255,0.08);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.step-label {
  display: block;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.step-desc {
  font-size: 0.95rem;
}

/* ----------- RESULTS SECTION ----------- */
.coaching-results-section {
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
}

.results-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.results-list li {
  flex: 1 1 250px;
  background: var(--color-white);
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1.05rem;
  border-top: 3px solid var(--color-gold);
}

.results-list li i {
  display: block;
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* ----------- CTA COACHING CARD ----------- */
.cta-coaching-card {
  max-width: 1000px;
  margin: 4rem auto;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.cta-coaching-icon {
  font-size: 4rem;
  color: var(--color-primary);
}

.cta-coaching-content {
  flex: 1 1 300px;
}

.cta-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.cta-coaching-phone {
  background: var(--color-white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  flex-shrink: 0;
}

.cta-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.cta-phone {
  color: var(--color-navy);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.cta-phone:hover {
  color: var(--color-primary);
}

.cta-phone i {
  color: var(--color-gold);
}

/* ----------- DEONTOLOGY SECTION ----------- */
.deontology-section {
  max-width: 900px;
  margin: 3rem auto 4rem;
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-left: 5px solid var(--color-gold);
}

.deontology-section p {
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-highlight-card, .cta-coaching-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .service-photo img {
    max-width: 100%;
  }
  .service-values {
    justify-content: center;
  }
  .coaching-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cta-coaching-phone {
    width: 100%;
  }
}
