/* ========== Support Page Playful Design ========== */
/* Тёплая, заботливая палитра — поддержка и внимание к пациентам */

/* ========== Playful Color Palette ========== */
:root {
  --s-primary: #1B5E45;
  --s-primary-deep: #124734;
  --s-warm: #E8C46A;
  --s-coral: #E8775A;
  --s-lavender: #9B7EA8;
  --s-sage: #7A9B7A;
  --s-teal-light: #E8F5F0;
  --s-cream: #FDF6E3;
  --s-warm-bg: #F5FAF8;
}

/* ========== Floating Decorative Background ========== */
.specialty-hero {
  position: relative;
}

.why-section {
  position: relative;
  overflow: hidden;
}

.why-section::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -2%;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-bg-s 7s ease-in-out infinite;
}

.contact-methods {
  position: relative;
  overflow: hidden;
}

.contact-methods::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -2%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(232, 196, 106, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-bg-s 8s ease-in-out infinite reverse;
}

.process-section {
  position: relative;
  overflow: hidden;
}

.process-section .container::after {
  content: '';
  position: absolute;
  top: 25%;
  right: -4%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(232, 119, 90, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-bg-s 6s ease-in-out infinite;
}

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -3%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-bg-s 9s ease-in-out infinite reverse;
}

@keyframes float-bg-s {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-20px) scale(1.1); opacity: 0.8; }
}

/* ========== Hero - Playful Additions ========== */

/* Title color */
.specialty-hero__title .highlight-support {
  color: var(--s-primary) !important;
  font-weight: 900 !important;
  position: relative;
}

.specialty-hero__title .highlight-support::after {
  content: ' 💚';
  font-size: 0.5em;
  display: inline-block;
  animation: heart-beat 2s ease-in-out infinite;
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Floating symbols around the hero title */
.specialty-hero__title::before {
  content: '🤝';
  position: absolute;
  top: -25px;
  left: -35px;
  font-size: 22px;
  animation: symbol-float-s 3s ease-in-out infinite;
}

.specialty-hero__title::after {
  content: '✨';
  position: absolute;
  bottom: -20px;
  right: -25px;
  font-size: 18px;
  animation: symbol-float-s 3.5s ease-in-out infinite 0.8s;
}

@keyframes symbol-float-s {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-10px) rotate(10deg); opacity: 1; }
}

/* Feature icons - each a different warm/caring color */
.specialty-hero__feature:nth-child(1) .specialty-hero__feature-icon {
  background: linear-gradient(135deg, #1B5E45, #124734) !important;
}
.specialty-hero__feature:nth-child(2) .specialty-hero__feature-icon {
  background: linear-gradient(135deg, #E8C46A, #D4AD4A) !important;
}
.specialty-hero__feature:nth-child(3) .specialty-hero__feature-icon {
  background: linear-gradient(135deg, #E8775A, #D4694C) !important;
}
.specialty-hero__feature:nth-child(4) .specialty-hero__feature-icon {
  background: linear-gradient(135deg, #9B7EA8, #7D6090) !important;
}

/* ========== Section Titles - Warm Underline ========== */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  margin: 12px auto 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #1B5E45, #E8C46A, #E8775A, #9B7EA8);
  animation: gradient-shift-s 3s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes gradient-shift-s {
  0%, 100% { background-position: 0% 50%; width: 80px; }
  50% { background-position: 100% 50%; width: 120px; }
}

/* ========== Why Section - Caring Cards ========== */
.why-section__card {
  position: relative;
  overflow: visible !important;
}

/* Each card icon - warm caring palette */
.why-section__card:nth-child(1) .why-section__card-icon {
  background: linear-gradient(135deg, #1B5E45, #124734) !important;
}

.why-section__card:nth-child(2) .why-section__card-icon {
  background: linear-gradient(135deg, #7A9B7A, #5A7A5A) !important;
}

.why-section__card:nth-child(3) .why-section__card-icon {
  background: linear-gradient(135deg, #E8C46A, #D4AD4A) !important;
}

.why-section__card:nth-child(4) .why-section__card-icon {
  background: linear-gradient(135deg, #E8775A, #D4694C) !important;
}

.why-section__card:nth-child(5) .why-section__card-icon {
  background: linear-gradient(135deg, #9B7EA8, #7D6090) !important;
}

.why-section__card:nth-child(6) .why-section__card-icon {
  background: linear-gradient(135deg, #1B5E45, #7A9B7A) !important;
}

/* Card hover - playful bounce */
.why-section__card:hover {
  transform: translateY(-10px) scale(1.03) !important;
}

.why-section__card:hover .why-section__card-icon {
  animation: icon-wiggle-s 0.5s ease-in-out !important;
}

@keyframes icon-wiggle-s {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg) scale(1.1); }
  50% { transform: rotate(8deg) scale(1.15); }
  75% { transform: rotate(-5deg) scale(1.1); }
}

/* ========== Contact Methods - Playful ========== */
.contact-card:nth-child(1) .contact-card__icon {
  background: linear-gradient(135deg, #1B5E45, #124734) !important;
}
.contact-card:nth-child(2) .contact-card__icon {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
}
.contact-card:nth-child(3) .contact-card__icon {
  background: linear-gradient(135deg, #E8775A, #D4694C) !important;
}
.contact-card:nth-child(4) .contact-card__icon {
  background: linear-gradient(135deg, #9B7EA8, #7D6090) !important;
}

.contact-card:hover .contact-card__icon {
  animation: icon-pop-s 0.4s ease-out !important;
}

@keyframes icon-pop-s {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ========== Process Steps - Playful ========== */
.process-step:nth-child(1) .process-step__number {
  background: linear-gradient(135deg, #1B5E45, #124734) !important;
}
.process-step:nth-child(2) .process-step__number {
  background: linear-gradient(135deg, #7A9B7A, #5A7A5A) !important;
}
.process-step:nth-child(3) .process-step__number {
  background: linear-gradient(135deg, #E8C46A, #D4AD4A) !important;
}
.process-step:nth-child(4) .process-step__number {
  background: linear-gradient(135deg, #E8775A, #D4694C) !important;
}

/* ========== FAQ Section ========== */
.faq-section__item:nth-child(1) .faq-icon {
  color: #1B5E45 !important;
}
.faq-section__item:nth-child(2) .faq-icon {
  color: #7A9B7A !important;
}
.faq-section__item:nth-child(3) .faq-icon {
  color: #E8C46A !important;
}
.faq-section__item:nth-child(4) .faq-icon {
  color: #E8775A !important;
}
.faq-section__item:nth-child(5) .faq-icon {
  color: #9B7EA8 !important;
}
.faq-section__item:nth-child(6) .faq-icon {
  color: #1B5E45 !important;
}

.faq-section__item--active .faq-icon {
  color: white !important;
  animation: icon-pop-s 0.4s ease-out !important;
}

/* ========== Reviews Section ========== */
.reviews-section__card-avatar {
  background: linear-gradient(135deg, #1B5E45, #E8C46A) !important;
}

.reviews-section__card-rating i.filled {
  color: #E8C46A !important;
  animation: star-pop-s 0.3s ease-out;
}

@keyframes star-pop-s {
  0% { transform: scale(0.5); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.reviews-section__card-verified {
  color: #9B7EA8 !important;
}

/* ========== CTA Section ========== */
.checkup-cta__btn {
  background: linear-gradient(135deg, #1B5E45, #E8775A) !important;
  box-shadow: 0 4px 20px rgba(232, 119, 90, 0.3) !important;
}

.checkup-cta__btn:hover {
  box-shadow: 0 8px 30px rgba(232, 119, 90, 0.5) !important;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .specialty-hero__title::before,
  .specialty-hero__title::after {
    display: none;
  }
}
