

/* Start:/assets/css/pages/news.css?178431773311959*/
/* ==================================================================
   НОВОСТИ - СПИСОК
   ================================================================== */
.news-header {
  background: linear-gradient(135deg, #0d6efd 0%, #1d8ce0 100%);
  color: white;
  padding: 60px 0 40px;
}

.news-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.news-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.news-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid #dee2e6;
  background: white;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  color: var(--gray);
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.news-search {
  position: relative;
  min-width: 300px;
}

.news-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.news-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.news-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
}

/* Сетка новостей */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: newsFadeIn 0.5s ease forwards;
  opacity: 0;
}

@keyframes newsFadeIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  50% { opacity: 0.5; transform: translateY(10px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.news-fade-out {
  animation: newsFadeOut 0.4s ease forwards;
}

@keyframes newsFadeOut {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  50% { opacity: 0.5; transform: translateY(10px) scale(0.98); }
  100% { opacity: 0; transform: translateY(20px) scale(0.95); display: none; }
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(13, 110, 253, 0.2);
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-item:hover .news-image img {
  transform: scale(1.05);
}

.news-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.news-badge.important {
  background: var(--danger);
}

.news-badge.announcement {
  background: var(--warning);
  color: #212529;
}

.news-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.news-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.news-meta-item i {
  font-size: 0.9rem;
}

.news-title-small {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  line-height: 1.4;
  flex: 1;
}

.news-excerpt {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex: 2;
}

.news-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.news-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.news-read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s ease;
}

.news-read-more:hover {
  color: var(--dark-blue);
  gap: 0.5rem;
}

/* Пустой список новостей */
.news-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  border: 2px dashed #e9ecef;
}

.news-empty-icon {
  font-size: 4rem;
  color: #dee2e6;
  margin-bottom: 1.5rem;
}

.news-empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.news-empty-description {
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Пагинация новостей */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.news-page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee2e6;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.news-page-btn:hover:not(.disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.news-page-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.news-page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Архив новостей */
.news-archive {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 3rem;
}

.archive-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
}

.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.archive-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f8f9fa;
}

.archive-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.archive-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.archive-link:hover {
  color: var(--primary);
}

.archive-date {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Контейнер новостей с анимацией */
#newsContainer {
  position: relative;
  min-height: 500px;
  transition: opacity 0.3s ease;
}

.news-fade-in:nth-child(1) { animation-delay: 0.05s; }
.news-fade-in:nth-child(2) { animation-delay: 0.1s; }
.news-fade-in:nth-child(3) { animation-delay: 0.15s; }
.news-fade-in:nth-child(4) { animation-delay: 0.2s; }
.news-fade-in:nth-child(5) { animation-delay: 0.25s; }
.news-fade-in:nth-child(6) { animation-delay: 0.3s; }
.news-fade-in:nth-child(7) { animation-delay: 0.35s; }
.news-fade-in:nth-child(8) { animation-delay: 0.4s; }
.news-fade-in:nth-child(9) { animation-delay: 0.45s; }

/* Дополнительные анимации для карточек новостей */
.news-item .card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.news-item .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.news-item .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s ease;
}

.news-item .card:hover::before {
  left: 100%;
}

.news-item .card-img-top {
  transition: transform 0.5s ease;
}

.news-item .card:hover .card-img-top {
  transform: scale(1.05);
}

.news-item .btn-outline-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-item .btn-outline-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.news-item .btn-outline-primary:hover::before {
  width: 300px;
  height: 300px;
}

.news-item .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.news-item .badge {
  animation: badgePulseNews 3s infinite;
  transform-origin: center;
}

@keyframes badgePulseNews {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb, 13, 110, 253), 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 5px rgba(var(--bs-primary-rgb, 13, 110, 253), 0); }
}

.news-item .badge.bg-info { animation-name: badgePulseInfo; }
@keyframes badgePulseInfo {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.2); }
  50% { box-shadow: 0 0 0 5px rgba(13, 202, 240, 0); }
}

.news-item .badge.bg-danger { animation-name: badgePulseDanger; }
@keyframes badgePulseDanger {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.2); }
  50% { box-shadow: 0 0 0 5px rgba(220, 53, 69, 0); }
}

.news-item .badge.bg-warning { animation-name: badgePulseWarning; }
@keyframes badgePulseWarning {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.2); }
  50% { box-shadow: 0 0 0 5px rgba(255, 193, 7, 0); }
}

.news-item .text-muted.small {
  transition: all 0.3s ease;
}

.news-item .card:hover .text-muted.small {
  color: #6c757d !important;
  transform: translateX(5px);
}

.news-item {
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.news-item.visible {
  transform: translateY(0);
}

/* Индикатор загрузки новостей */
.news-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.news-loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Адаптивность новостей */
@media (max-width: 1199.98px) {
  .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 991.98px) {
  .news-controls {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .news-search {
    min-width: 100%;
  }
  
  .news-filters {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .news-header {
    padding: 40px 0 30px;
  }
  
  .news-title {
    font-size: 2rem;
  }
  
  .news-description {
    font-size: 1rem;
  }
  
  .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
  }
  
  .news-content {
    padding: 1rem;
  }
  
  .news-title-small {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-filters {
    flex-direction: column;
  }
  
  .filter-btn {
    width: 100%;
    text-align: center;
  }
  
  .news-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
/* End */


/* Start:/assets/css/layout/page-header.css?178431773315249*/
/* ==================================================================
   ЗАГОЛОВОК СТРАНИЦЫ - УНИВЕРСАЛЬНЫЙ КОМПОНЕНТ
   ================================================================== */

/* Используем CSS custom properties для легкой настройки */
:root {
  --header-primary: #0d6efd;
  --header-secondary: #0b5ed7;
  --header-accent: #ffffff;
  --header-gradient-1: #1a2a6c;
  --header-gradient-2: #0d6efd;
  --header-gradient-3: #0b5ed7;
  --header-text-light: rgba(255, 255, 255, 0.95);
  --header-shadow: rgba(0, 0, 0, 0.2);
  --header-glow: rgba(255, 255, 255, 0.15);
}

/* Основной контейнер заголовка */
.page-header {
  position: relative;
  background: linear-gradient(135deg, 
    var(--header-gradient-1), 
    var(--header-gradient-2), 
    var(--header-gradient-3));
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  will-change: background-position;
}

/* Анимация градиента */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Фоновые элементы */
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: min(800px, 80vw);
  height: min(800px, 80vw);
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 20s ease-in-out infinite;
  z-index: 1;
  will-change: transform;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: min(600px, 60vw);
  height: min(600px, 60vw);
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 25s ease-in-out infinite reverse;
  z-index: 1;
  will-change: transform;
}

/* Анимация плавающих элементов */
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -3%) scale(1.05); }
  66% { transform: translate(-2%, 2%) scale(0.95); }
}

/* Геометрические фигуры */
.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 1;
  will-change: transform, border-radius;
}

.shape-1 {
  width: min(400px, 40vw);
  height: min(400px, 40vw);
  top: -15%;
  right: 5%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotateSlow 35s linear infinite;
}

.shape-2 {
  width: min(300px, 30vw);
  height: min(300px, 30vw);
  bottom: -10%;
  left: 10%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  animation: rotateSlow 45s linear infinite reverse;
}

.shape-3 {
  width: min(200px, 20vw);
  height: min(200px, 20vw);
  top: 30%;
  left: 15%;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  animation: morphShape 18s ease-in-out infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes morphShape {
  0%, 100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  50% { border-radius: 42% 58% 38% 62% / 48% 33% 67% 52%; }
}

/* Парящие иконки */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  animation: floatIcon 18s linear infinite;
  will-change: transform;
}

.floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 70%; right: 8%; animation-delay: 3s; }
.floating-icon:nth-child(3) { bottom: 15%; left: 12%; animation-delay: 6s; }
.floating-icon:nth-child(4) { top: 40%; right: 18%; animation-delay: 9s; }
.floating-icon:nth-child(5) { bottom: 30%; left: 35%; animation-delay: 12s; }

@keyframes floatIcon {
  0% { transform: translateY(0) translateX(0) rotate(0deg); }
  25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
  50% { transform: translateY(15px) translateX(-15px) rotate(180deg); }
  75% { transform: translateY(-25px) translateX(15px) rotate(270deg); }
  100% { transform: translateY(0) translateX(0) rotate(360deg); }
}

/* Частицы */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  opacity: 0.4;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat 12s linear infinite;
  will-change: transform;
}

.particle:nth-child(1) { top: 15%; left: 8%; animation-duration: 10s; }
.particle:nth-child(2) { top: 75%; left: 15%; animation-duration: 14s; animation-delay: 2s; }
.particle:nth-child(3) { top: 35%; right: 12%; animation-duration: 12s; animation-delay: 4s; }
.particle:nth-child(4) { bottom: 25%; right: 20%; animation-duration: 16s; animation-delay: 1s; }
.particle:nth-child(5) { top: 85%; left: 35%; animation-duration: 13s; animation-delay: 3s; }

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-30px) translateX(15px); }
  50% { transform: translateY(20px) translateX(-20px); }
  75% { transform: translateY(-25px) translateX(12px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Контейнер с контентом */
.page-header .container {
  position: relative;
  z-index: 10;
}

.page-header .py-5 {
  padding-top: clamp(3rem, 8vh, 5rem) !important;
  padding-bottom: clamp(3rem, 8vh, 5rem) !important;
}

/* Левая часть с заголовком */
.page-header .col-lg-8 {
  animation: slideInLeft 0.7s ease-out;
  position: relative;
}

/* Заголовок */
.page-header h1 {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--header-accent) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientText 8s ease infinite;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  text-shadow: 0 5px 15px var(--header-shadow);
  will-change: background-position;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Декоративная линия под заголовком */
.page-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--header-primary), #fff, var(--header-primary));
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out 0.3s both;
}

@keyframes expandWidth {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 1; }
}

/* Подзаголовок */
.page-header .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--header-text-light);
  max-width: 90%;
  text-shadow: 0 2px 4px var(--header-shadow);
  animation: fadeInUp 0.7s ease-out 0.2s both;
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid var(--header-primary);
  font-weight: 400;
}

/* Счетчик услуг/информации */
.service-counter {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 1.5rem;
  animation: fadeInUp 0.7s ease-out 0.4s both;
  box-shadow: 0 5px 15px var(--header-shadow);
  transition: transform 0.3s ease;
}

.service-counter:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.service-counter i {
  margin-right: 0.8rem;
  color: var(--header-accent);
  font-size: 1.2rem;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Правая часть с карточкой */
.page-header .col-lg-4 {
  animation: slideInRight 0.7s ease-out 0.3s both;
}

/* Карточка */
.page-header .bg-white {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  padding: 1.5rem !important;
}

.page-header .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2), 0 0 0 2px var(--header-primary) !important;
}

/* Декоративный элемент карточки */
.page-header .bg-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--header-primary), #fff, var(--header-primary));
  background-size: 200% 100%;
  animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* Заголовок карточки */
.page-header .bg-white h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-header .bg-white h6 i {
  color: var(--header-primary);
  font-size: 1.2rem;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Основная кнопка */
.page-header .btn-primary {
  background: linear-gradient(135deg, var(--header-primary), var(--header-secondary));
  border: none;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-header .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.page-header .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(13, 110, 253, 0.4);
  background: linear-gradient(135deg, var(--header-secondary), var(--header-primary));
}

.page-header .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.page-header .btn-primary i {
  transition: transform 0.3s ease;
}

.page-header .btn-primary:hover i {
  transform: translateX(5px) scale(1.1);
}

/* Вторичная кнопка */
.page-header .btn-outline-primary {
  background: transparent;
  border: 2px solid var(--header-primary);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.page-header .btn-outline-primary:hover {
  background: var(--header-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.page-header .btn-outline-primary i {
  transition: transform 0.3s ease;
}

.page-header .btn-outline-primary:hover i {
  transform: rotate(90deg);
}

/* Анимации текста */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================================================================
   АДАПТИВНОСТЬ
   ================================================================== */

@media (max-width: 991.98px) {
  .page-header .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .page-header .col-lg-8,
  .page-header .col-lg-4 {
    text-align: center !important;
  }
  
  .page-header .lead {
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid var(--header-primary);
    padding-left: 1rem;
    text-align: left;
    max-width: 90%;
  }
  
  .page-header h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .page-header .col-lg-4 {
    margin-top: 2rem;
  }
  
  .page-header .bg-white {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .floating-icons,
  .particles,
  .shape {
    opacity: 0.2;
    animation: none;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header .lead {
    font-size: 1rem;
    padding-left: 0.8rem;
  }
  
  .page-header .bg-white h6 {
    font-size: 1rem;
  }
  
  .page-header .btn-primary,
  .page-header .btn-outline-primary {
    padding: 0.7rem;
    font-size: 0.95rem;
  }
  
  .service-counter {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }
}

@media (max-width: 576px) {
  .page-header .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .page-header .bg-white {
    padding: 1.2rem !important;
    border-radius: 16px !important;
  }
  
  .floating-icons,
  .particles {
    display: none;
  }
}

/* Для пользователей, которые предпочитают уменьшенное движение */
@media (prefers-reduced-motion: reduce) {
  .page-header,
  .page-header::before,
  .page-header::after,
  .shape,
  .floating-icon,
  .particle,
  .service-counter i,
  .page-header .btn-primary,
  .page-header .btn-outline-primary {
    animation: none !important;
    transition: none !important;
  }
  
  .page-header .bg-white:hover {
    transform: none;
  }
}
/* End */
/* /assets/css/pages/news.css?178431773311959 */
/* /assets/css/layout/page-header.css?178431773315249 */
