/* styles/medic-call.css */

.section-tag {
  color: var(--teal);
}

@media (max-width: 768px) {
  .section-tag {
    max-width: 250px;
  }
}

.section-tag::before {
  background: var(--teal);
}

.btn-dark {
  background: var(--teal-dark);
  color: var(--bg);
}

.btn-dark:hover {
  background: var(--teal);
}

/* HERO */
.hero {
  background: var(--bg);
  padding: 90px 0;
}

.hero .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--teal-dark);
  text-transform: uppercase;
  background: var(--teal-light);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-shape {
  width: 100%;
  max-width: 460px;
  height: 420px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #b8dede, #7fbfbf);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scaleX(-1);
}

.hero-img-shape .img-ph {
  color: #888;
  font-size: 13px;
  font-style: italic;
  text-align: center;
  padding: 20px;
}

/* HERO RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 20px;
  }

  .hero .inner {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 30px;
  }

  .hero-img-shape {
    border-radius: 0;
    max-width: 100%;
    height: 280px;
  }

  .hero-text-wrap {
    padding: 0 15px;
  }
}

/* PROCESSUS */
.processus-section {
  background: var(--teal-light);
  padding: 80px 0;
}

.processus-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: -0.3px;
}

@media (max-width: 768px) {
  .processus-section {
    padding: 20px 0;
  }
  .processus-section h2 {
    margin-bottom: 30px;
  }
}

.steps-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--teal);
  z-index: 0;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: var(--bg);
  color: var(--teal);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.25s;
}

.step-item.active .step-circle {
  background: var(--teal);
  color: var(--bg);
  transform: scale(1.15);
}

.step-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 10px;
  font-weight: 600;
  text-align: center;
}

.step-item.active .step-label {
  color: var(--teal);
  font-weight: 700;
}

.step-detail {
  border: 2px solid var(--teal);
  border-radius: 12px;
  padding: 24px 28px;
  background: var(--bg);
}

.step-detail-tag {
  background: var(--teal);
  color: var(--bg);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.step-detail h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.step-detail p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

/* COMPARAISON */
.comparaison-section {
  background: var(--bg);
  padding: 80px 0;
}

.comparaison-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: -0.3px;
}

@media (max-width: 768px) {
  .comparaison-section {
    padding: 20px 0;
  }
  .comparaison-section h2 {
    margin-bottom: 30px;
  }
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .comp-grid {
    grid-template-columns: 1fr;
  }
}

.comp-card {
  border-radius: 14px;
  padding: 32px 28px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.comp-card.situation {
  border: 2px solid var(--teal);
  background: var(--bg);
}

.comp-card.avec {
  background: var(--teal);
  color: var(--bg);
  transform: scale(1.03);
  box-shadow: 0 16px 40px var(--teal-light);
}

.comp-card.sans {
  border: 2px solid #ddd;
  background: var(--bg);
  opacity: 0.85;
}

.comp-card.situation:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px var(--teal-light);
}

.comp-card.sans:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(var(--black), 0.08);
  opacity: 1;
}

.comp-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--teal);
  text-align: center;
}

.comp-card.avec .comp-title {
  color: var(--bg);
}

.comp-card.sans .comp-title {
  color: var(--gray);
}

.comp-item {
  font-size: 13px;
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid var(--teal-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.comp-item:last-child {
  border-bottom: none;
}

.comp-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 5px;
}

.comp-card.avec .comp-item {
  color: rgba(var(--white-rgb), 0.9);
  border-bottom-color: rgba(var(--white-rgb), 0.15);
}

.comp-card.avec .comp-item::before {
  background: rgba(var(--white-rgb), 0.7);
}

.comp-card.sans .comp-item {
  color: var(--gray);
}

.comp-card.sans .comp-item::before {
  background: #ccc;
}

/* FEEDBACKS / CAROUSEL */
.feedbacks-section {
  background: var(--bg);
  padding: 80px 0;
  overflow: hidden;
}

.feedbacks-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

.carousel-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  color: var(--teal);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 20;
}

.carousel-btn:hover {
  background: var(--teal-light);
  color: var(--bg);
}

.carousel-inner {
  position: relative;
  width: 400px;
  height: 350px;
  flex-shrink: 0;
}

.feedback-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
}

.feedback-card {
  background: var(--teal-light);
  border-radius: 12px;
  padding: 36px 40px;
  position: absolute;
  width: 400px;
  height: 350px;
  border: 1px solid var(--teal-dark);
  top: 0;
  left: 0;
  cursor: pointer;
  will-change: transform, opacity;
}

.feedback-card:hover {
  box-shadow: 0 8px 25px rgba(var(--black-rgb), 0.15);
}

.feedback-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
}

.feedback-quote {
  font-size: 64px;
  color: var(--teal);
  font-family: Georgia, serif;
  line-height: 0.8;
  opacity: 0.4;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .feedback-quote {
    display: none;
  }
}

.feedback-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
  font-style: italic;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--bg);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-name {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.feedback-role {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.carousel-dot.active {
  background: var(--teal);
}

.carousel-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* CAROUSEL RESPONSIVE */
@media (max-width: 900px) {
  .carousel-wrapper {
    gap: 4px;
    justify-content: center;
  }

  .carousel-btn {
    background: transparent;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .carousel-btn:hover {
    background: transparent;
    color: var(--bg);
  }

  .carousel-inner {
    width: 63vw;
    height: auto;
    min-height: 190px;
  }

  .feedback-card {
    width: 100%;
    height: auto;
    min-height: 190px;
    padding: 24px 20px;
    align-content: center;
  }

  .carousel-cta {
    margin-top: 30px;
  }

  .carousel-cta .btn-dark {
    font-size: 12px;
    padding: 12px 18px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .feedback-card {
    min-height: 295px;
  }

  .carousel-inner {
    min-height: 295px;
  }

  .feedbacks-section {
    padding: 20px 0;
  }
}

/* FAQ */
