

/* Start:/assets/css/pages/physradlab.css?178431773320969*/
/* ==================================================================
   СТРАНИЦА ОТДЕЛЕНИЯ ФИЗИЧЕСКИХ ФАКТОРОВ И РАДИОЛОГИИ
   Файл: physradlab.css
   ВНИМАНИЕ: Все стили имеют префикс phys- чтобы не затрагивать header/footer
================================================================== */

/* ==================================================================
   ЗАГОЛОВКИ РАЗДЕЛОВ (только для страницы)
================================================================== */

.phys-branch-header {
  position: relative;
  background: linear-gradient(135deg, #0d6efd 0%, #1d8ce0 50%, #4d9eff 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  border: none;
  box-shadow: 
    0 20px 40px -10px rgba(13, 110, 253, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  overflow: hidden;
}

/* Декоративные круги */
.phys-branch-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.2) 0%, 
    transparent 70%
  );
  border-radius: 50%;
  animation: phys-rotate 20s linear infinite;
}

.phys-branch-header::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 70%
  );
  border-radius: 50%;
  animation: phys-rotateReverse 25s linear infinite;
}

@keyframes phys-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes phys-rotateReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.phys-branch-header .h4 {
  position: relative;
  z-index: 2;
  font-weight: 700;
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Иконка перед заголовком */
.phys-branch-header .h4::before {
  font-family: 'bootstrap-icons';
  content: '\F4E4'; /* bi-radioactive */
  font-size: 1.8rem;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ==================================================================
   КАРТОЧКА РУКОВОДСТВА (синяя)
================================================================== */

.phys-card-primary {
  border: 1px solid rgba(13, 110, 253, 0.2) !important;
  border-radius: 30px !important;
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  height: 100%;
}

.phys-card-primary:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(13, 110, 253, 0.2);
}

.phys-card-header {
  background: linear-gradient(135deg, #0d6efd 0%, #1d8ce0 100%) !important;
  border-bottom: none;
  padding: 1.25rem 1.5rem;
}

.phys-card-header h5 {
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phys-card-header h5::before {
  font-family: 'bootstrap-icons';
  content: '\F285'; /* bi-person-badge */
  font-size: 1.3rem;
}

.phys-card-body {
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  padding: 2rem;
}

.phys-card-body i.bi-person-badge {
  color: #0d6efd;
  font-size: 3rem;
  background: rgba(13, 110, 253, 0.1);
  padding: 1.2rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.phys-card-primary:hover i.bi-person-badge {
  transform: scale(1.1) rotate(5deg);
  background: rgba(13, 110, 253, 0.15);
}

.phys-card-body h6.text-primary {
  color: #0a58ca;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.phys-card-body .h5 {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.phys-card-body .bg-light {
  background: rgba(13, 110, 253, 0.05) !important;
  border-radius: 15px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.phys-card-primary:hover .bg-light {
  background: rgba(13, 110, 253, 0.08) !important;
}

.phys-card-body .bg-light strong {
  color: #0a58ca;
}

/* ==================================================================
   КАРТОЧКА КОНТАКТОВ (зеленая)
================================================================== */

.phys-card-success {
  border: 1px solid rgba(40, 167, 69, 0.2) !important;
  border-radius: 30px !important;
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  height: 100%;
}

.phys-card-success:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(40, 167, 69, 0.2);
}

.phys-card-success .phys-card-header {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

.phys-card-success .phys-card-header h5::before {
  content: '\F4F5'; /* bi-telephone */
}

.phys-card-success .phys-card-body i.bi-telephone,
.phys-card-success .phys-card-body i.bi-envelope,
.phys-card-success .phys-card-body i.bi-geo-alt,
.phys-card-success .phys-card-body i.bi-telephone-plus {
  color: #28a745;
  font-size: 1.2rem;
  min-width: 28px;
  transition: transform 0.2s ease;
}

.phys-card-success .phys-card-body a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 600;
}

.phys-card-success .phys-card-body a:hover {
  color: #28a745;
  text-decoration: underline;
}

.phys-card-success .phys-card-body .h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.phys-card-success .phys-card-body .mb-3 {
  margin-bottom: 1.5rem !important;
  padding: 0.5rem;
  border-radius: 15px;
  transition: transform 0.2s ease;
}

.phys-card-success .phys-card-body .mb-3:hover {
  transform: translateX(8px);
  background: rgba(40, 167, 69, 0.03);
}

.phys-card-success .phys-card-body .mt-4 {
  margin-top: 2rem !important;
  padding: 1rem;
  background: rgba(40, 167, 69, 0.05);
  border-radius: 15px;
}

/* ==================================================================
   ОСНОВНАЯ КАРТОЧКА С ИНФОРМАЦИЕЙ
================================================================== */

.phys-card-info {
  border: none;
  border-radius: 30px !important;
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(13, 110, 253, 0.1) !important;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(13, 110, 253, 0.1);
}

.phys-card-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(13, 110, 253, 0.2) !important;
  border-color: rgba(13, 110, 253, 0.2) !important;
}

.phys-card-info .card-body {
  padding: 2rem;
}

.phys-card-info .lead {
  font-size: 1.15rem;
  color: #2c3e50;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.phys-card-info .text-primary {
  color: #0a58ca;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding-bottom: 0.5rem;
}

.phys-card-info .text-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0d6efd, #4d9eff);
  border-radius: 2px;
}

.phys-card-info .text-success {
  color: #28a745;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding-bottom: 0.5rem;
}

.phys-card-info .text-success::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #28a745, #20c997);
  border-radius: 2px;
}

.phys-card-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.phys-card-info li {
  color: #2c3e50;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem;
  transition: transform 0.2s ease;
}

.phys-card-info li:hover {
  transform: translateX(5px);
  color: #0d6efd;
}

.phys-card-info li::before {
  content: '•';
  color: #0d6efd;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* ==================================================================
   КАРТОЧКИ УСЛУГ (с цветными заголовками)
================================================================== */

.phys-service-card {
  border: none;
  border-radius: 30px !important;
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(13, 110, 253, 0.1) !important;
  transition: all 0.4s ease;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px -10px rgba(13, 110, 253, 0.1);
}

.phys-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(13, 110, 253, 0.2) !important;
}

.phys-service-header {
  padding: 1.25rem 1.5rem;
  border-bottom: none;
}

.phys-service-header.bg-primary {
  background: linear-gradient(135deg, #0d6efd 0%, #1d8ce0 100%) !important;
}

.phys-service-header.bg-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

.phys-service-header.bg-info {
  background: linear-gradient(135deg, #17a2b8 0%, #0dcaf0 100%) !important;
}

.phys-service-header h5 {
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phys-service-body {
  padding: 1.5rem;
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
}

.phys-service-body .list-unstyled {
  margin-bottom: 0;
}

.phys-service-body .list-unstyled li {
  margin-bottom: 0.75rem;
  color: #2c3e50;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  transition: transform 0.2s ease;
}

.phys-service-body .list-unstyled li:hover {
  transform: translateX(8px);
}

.phys-service-body .list-unstyled li i {
  color: #0d6efd;
  font-size: 1.1rem;
  margin-right: 0.75rem;
  margin-top: 0.2rem;
  min-width: 20px;
  transition: transform 0.2s ease;
}

.phys-service-body .list-unstyled li:hover i {
  transform: scale(1.2);
}

.phys-service-body ul {
  list-style: none;
  padding-left: 0;
}

.phys-service-body ul li {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  position: relative;
  padding-left: 1.2rem;
}

.phys-service-body ul li::before {
  content: '•';
  color: #0d6efd;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ==================================================================
   АЛЕРТ (ВАЖНОЕ УВЕДОМЛЕНИЕ)
================================================================== */

.phys-alert-warning {
  background: linear-gradient(145deg, #fff3cd 0%, #ffecb5 100%);
  border: none;
  border-left: 6px solid #ffc107;
  border-radius: 20px;
  padding: 1.5rem;
  color: #856404;
  box-shadow: 0 10px 25px -8px rgba(255, 193, 7, 0.2);
  transition: all 0.3s ease;
}

.phys-alert-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -8px rgba(255, 193, 7, 0.3);
}

.phys-alert-warning .alert-heading {
  color: #856404;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phys-alert-warning .alert-heading::before {
  font-family: 'bootstrap-icons';
  content: '\F33A'; /* bi-exclamation-triangle */
  font-size: 1.5rem;
}

.phys-alert-warning p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.phys-alert-warning strong {
  color: #856404;
  font-weight: 700;
}

/* ==================================================================
   КАРТОЧКА СТОИМОСТИ УСЛУГ
================================================================== */

.phys-card-pricing {
  border: 1px solid rgba(23, 162, 184, 0.2) !important;
  border-radius: 30px !important;
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
}

.phys-card-pricing:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(23, 162, 184, 0.2);
}

.phys-card-pricing .card-header {
  background: linear-gradient(135deg, #17a2b8 0%, #0dcaf0 100%) !important;
  border-bottom: none;
  padding: 1.25rem 1.5rem;
}

.phys-card-pricing .card-header h5 {
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phys-card-pricing .card-header h5::before {
  font-family: 'bootstrap-icons';
  content: '\F3E2'; /* bi-cash */
  font-size: 1.3rem;
}

.phys-card-pricing .card-body {
  padding: 2rem;
  text-align: center;
}

.phys-card-pricing .h5 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
}

.phys-card-pricing .btn-primary {
  background: linear-gradient(135deg, #0d6efd, #1d8ce0);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(13, 110, 253, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.phys-card-pricing .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(13, 110, 253, 0.4);
}

.phys-card-pricing .btn-primary i {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.phys-card-pricing .btn-primary:hover i {
  transform: translateX(3px);
}

/* ==================================================================
   АНИМАЦИИ ПОЯВЛЕНИЯ
================================================================== */

@keyframes phys-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phys-branch-header,
.phys-card-primary,
.phys-card-success,
.phys-card-info,
.phys-service-card,
.phys-alert-warning,
.phys-card-pricing {
  opacity: 0;
  animation: phys-fadeInUp 0.6s ease forwards;
}

.phys-branch-header { animation-delay: 0.1s; }
.phys-card-primary { animation-delay: 0.2s; }
.phys-card-success { animation-delay: 0.3s; }
.phys-card-info { animation-delay: 0.4s; }
.phys-service-card:nth-child(1) { animation-delay: 0.5s; }
.phys-service-card:nth-child(2) { animation-delay: 0.55s; }
.phys-service-card:nth-child(3) { animation-delay: 0.6s; }
.phys-alert-warning { animation-delay: 0.7s; }
.phys-card-pricing { animation-delay: 0.8s; }

/* ==================================================================
   АДАПТИВНОСТЬ
================================================================== */

@media (max-width: 1200px) {
  .phys-branch-header .h4 {
    font-size: 1.3rem;
  }
  
  .phys-branch-header .h4::before {
    font-size: 1.6rem;
    padding: 8px;
  }
}

@media (max-width: 992px) {
  .phys-branch-header {
    padding: 1.25rem 1.5rem;
  }
  
  .phys-branch-header .h4 {
    font-size: 1.25rem;
  }
  
  .phys-card-body {
    padding: 1.5rem;
  }
  
  .phys-card-body .h5 {
    font-size: 1.2rem;
  }
  
  .phys-service-body {
    padding: 1.25rem;
  }
  
  .phys-card-pricing .card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .phys-branch-header {
    padding: 1rem 1.25rem;
  }
  
  .phys-branch-header .h4 {
    font-size: 1.2rem;
    gap: 10px;
  }
  
  .phys-branch-header .h4::before {
    font-size: 1.3rem;
    padding: 6px;
  }
  
  .phys-card-primary,
  .phys-card-success {
    margin-bottom: 1.5rem;
  }
  
  .phys-card-body {
    padding: 1.25rem;
  }
  
  .phys-card-body i.bi-person-badge {
    font-size: 2.5rem;
    padding: 1rem;
  }
  
  .phys-card-body .h5 {
    font-size: 1.1rem;
  }
  
  .phys-card-success .phys-card-body .h5 {
    font-size: 1rem;
  }
  
  .phys-card-info .card-body {
    padding: 1.5rem;
  }
  
  .phys-card-info .lead {
    font-size: 1rem;
  }
  
  .phys-service-body .list-unstyled li {
    font-size: 0.95rem;
  }
  
  .phys-service-body ul li {
    font-size: 0.95rem;
  }
  
  .phys-alert-warning {
    padding: 1.25rem;
  }
  
  .phys-alert-warning .alert-heading {
    font-size: 1.1rem;
  }
  
  .phys-card-pricing .card-body {
    padding: 1.25rem;
  }
  
  .phys-card-pricing .h5 {
    font-size: 1rem;
  }
  
  .phys-card-pricing .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .phys-branch-header .h4 {
    font-size: 1.1rem;
  }
  
  .phys-branch-header .h4::before {
    font-size: 1.1rem;
    padding: 5px;
  }
  
  .phys-card-body i.bi-person-badge {
    font-size: 2rem;
    padding: 0.8rem;
  }
  
  .phys-card-body .h5 {
    font-size: 1rem;
  }
  
  .phys-card-success .phys-card-body .h5 {
    font-size: 0.95rem;
  }
  
  .phys-card-info .card-body {
    padding: 1.25rem;
  }
  
  .phys-card-info .text-primary,
  .phys-card-info .text-success {
    font-size: 1rem;
  }
  
  .phys-card-info li {
    font-size: 0.9rem;
  }
  
  .phys-service-body {
    padding: 1rem;
  }
  
  .phys-service-body .list-unstyled li {
    font-size: 0.9rem;
  }
  
  .phys-service-body ul li {
    font-size: 0.9rem;
  }
  
  .phys-alert-warning {
    padding: 1rem;
  }
  
  .phys-alert-warning .alert-heading {
    font-size: 1rem;
  }
  
  .phys-alert-warning p {
    font-size: 0.9rem;
  }
  
  .phys-card-pricing .card-body {
    padding: 1rem;
  }
  
  .phys-card-pricing .btn-primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    width: 100%;
  }
}

/* ==================================================================
   ОТКЛЮЧЕНИЕ АНИМАЦИЙ
================================================================== */

@media (prefers-reduced-motion: reduce) {
  .phys-branch-header::before,
  .phys-branch-header::after,
  .phys-card-primary,
  .phys-card-success,
  .phys-card-info,
  .phys-service-card,
  .phys-alert-warning,
  .phys-card-pricing,
  .phys-service-body .list-unstyled li,
  .phys-card-success .phys-card-body .mb-3 {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .phys-branch-header {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ==================================================================
   ПЕЧАТНАЯ ВЕРСИЯ
================================================================== */

@media print {
  .phys-branch-header {
    background: #0d6efd;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    box-shadow: none;
  }
  
  .phys-card-primary,
  .phys-card-success,
  .phys-card-info,
  .phys-service-card,
  .phys-card-pricing {
    border: 2px solid #0d6efd !important;
    box-shadow: none !important;
    background: white !important;
    break-inside: avoid;
  }
  
  .phys-service-header.bg-primary,
  .phys-service-header.bg-success,
  .phys-service-header.bg-info,
  .phys-card-header {
    background: #0d6efd !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  
  .phys-alert-warning {
    border: 2px solid #ffc107 !important;
    background: #fff3cd !important;
  }
  
  .phys-branch-header::before,
  .phys-branch-header::after {
    display: none;
  }
  
  .phys-service-body .list-unstyled li i,
  .phys-card-success .phys-card-body i {
    color: #0d6efd !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
/* 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/physradlab.css?178431773320969 */
/* /assets/css/layout/page-header.css?178431773315249 */
