/* Основные цвета и переменные */
:root {
  --primary-color: #2c7be5;
  --secondary-color: #6ebf8b;
  --accent-color: #ff7e5f;
  --accent-gradient: linear-gradient(135deg, #2c7be5, #6ebf8b);
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

/* Общие стили */
body {
  font-family: Tahoma, sans-serif;
  color: #4a5568;
  line-height: 1.6;
  overflow-x: hidden;
}



h1, h2, h3, h4, h5, h6 {
  color: #2d3748;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

.text-gradient {
  background: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-light {
  background: linear-gradient(135deg, #fff, #d1e6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-shadow {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: rgba(44, 123, 229, 0.1);
  border-radius: 30px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Стили навигации */
.NavigationWisdomFlex {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem !important;
}

.nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover:after {
  width: 60%;
}

.nav-link.active:after {
  width: 60%;
}

/* Параллакс секции */
.parallax-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.parallax-container {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0);
  will-change: transform;
  z-index: -1;
  filter: brightness(0.7);
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 3rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Главный баннер */
.BannerVitalityFlow {
  color: white;
}

/* Карточки с изображениями */
.card-image-container {
  overflow: hidden;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .img-cover {
  transform: scale(1.05);
}

.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Карточки и секции */
.ZenithMoveCard, .BreatheEssenceCard, .HarmonyLightCard, .SereneBalanceCard,
.VigorPathCard, .PeakMotionCard, .ElementVitalCard,
.GlideTestimonialCard, .SereneFeedbackCard, .PrismReviewCard {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* Карточки услуг и отзывов */
.card {
  border: none;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* Параллакс-разделитель */
.parallax-divider {
  height: 250px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.parallax-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.parallax-content {
  position: relative;
  text-align: center;
  max-width: 80%;
  padding: 2rem;
}

/* Параллакс с цитатой */
.parallax-quote {
  height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.parallax-quote .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.quote-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 80%;
  padding: 2rem;
}

.quote-content i {
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.quote-content p {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Советы по здоровью */
.advice-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.advice-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.advice-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Список с особыми иконками */
.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
}

.feature-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Карточки услуг */
.services-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.service-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.card-blob {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.1;
  transition: var(--transition);
}

.free-card .card-blob {
  background: var(--secondary-color);
}

.premium-card .card-blob {
  background: var(--primary-color);
}

.personal-card .card-blob {
  background: var(--accent-color);
}

.service-card:hover .card-blob {
  transform: scale(1.2);
}

.service-icon {
  width: 100px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--light-color);
  box-shadow: var(--shadow);
}

/* Карточки отзывов */
.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.testimonial-card:before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(44, 123, 229, 0.1);
  line-height: 1;
}

/* Форма контактов */
.contact-form-card {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

#ContactMindSpace {
  position: relative;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #f8f9fa;
}

/* Анимация для фона формы контактов */
.blob-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle at center,
    rgba(44, 123, 229, 0.1) 0%,
    rgba(110, 191, 139, 0.1) 50%,
    rgba(255, 126, 95, 0.1) 100%
  );
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  animation: blob-movement 20s linear infinite;
}

@keyframes blob-movement {
  0% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.form-control {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(44, 123, 229, 0.25);
}

.input-group-text {
  border-color: #e2e8f0;
}

/* Стили футера */
.footer-section {
  background-color: #1e2a38;
  position: relative;
  overflow: hidden;
}

.footer-divider {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  height: 1px;
}

.FooterAuraLinks li, 
.FooterZenithLinks li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.FooterZenithLinks a {
  transition: var(--transition);
  position: relative;
  display: inline-block;
  padding: 3px 0;
}

.FooterZenithLinks a:hover {
  color: var(--secondary-color) !important;
  transform: translateX(5px);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Анимация для элементов */
.FlowVitalAdvice, 
.RadianceHealthAdvice, 
.ZenithWaveAdvice {
  transition: var(--transition);
}

.FlowVitalAdvice:hover, 
.RadianceHealthAdvice:hover, 
.ZenithWaveAdvice:hover {
  transform: translateY(-10px);
}

/* Адаптивность */
@media (max-width: 991px) {
  .parallax-container {
    height: 500px;
  }
  
  .card-image-container {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
}

@media (max-width: 768px) {
  .parallax-container {
    height: 450px;
  }
  
  .hero-content {
    padding: 2rem;
  }
  
  .advice-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .parallax-quote, .parallax-divider {
    height: 200px;
  }
  
  .quote-content p {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .parallax-container {
    height: 400px;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .service-icon, .advice-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Стили страницы О проекте */
.MeridianStorySection {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.OrbitalVisionCard {
  border-left: 4px solid var(--primary-color);
}

.AquaTimelineItem {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1.5rem;
}

.AquaTimelineItem:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #e9ecef;
}

.AquaTimelineItem:after {
  content: "";
  position: absolute;
  left: -4px;
  top: 5px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.PulseMissionBox {
  background-color: rgba(44, 123, 229, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
}