/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html {
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

hr {
  border: none;
  height: 1px;
  background-color: rgb(205 0 255 / 38%);
  margin: 24px 0; /* можно изменить отступы при необходимости */
}

/* ==================== */
/* УЛУЧШЕННЫЕ FAQ СТИЛИ */
/* ==================== */

.faq details {
  background: linear-gradient(135deg, rgba(218, 119, 242, 0.05) 0%, rgba(184, 87, 212, 0.05) 100%);
  border: 2px solid rgba(218, 119, 242, 0.2);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq details:hover {
  border-color: rgba(218, 119, 242, 0.4);
  box-shadow: 0 6px 25px rgba(218, 119, 242, 0.2);
  transform: translateY(-2px);
}

.faq details[open] {
  border-color: #da77f2;
  box-shadow: 0 8px 30px rgba(218, 119, 242, 0.3);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  position: relative;
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(218, 119, 242, 0.1) 0%, rgba(184, 87, 212, 0.1) 100%);
  transition: all 0.3s ease;
  list-style: none;
  user-select: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 2rem;
  font-weight: 700;
  color: #da77f2;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 0;
}

.faq details[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
  color: #e590f7;
}

.faq summary:hover {
  background: linear-gradient(135deg, rgba(218, 119, 242, 0.15) 0%, rgba(184, 87, 212, 0.15) 100%);
  color: #da77f2;
  padding-left: 1.8rem;
}

.faq summary:hover::after {
  color: #e590f7;
  transform: translateY(-50%) scale(1.1);
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-content p {
  margin: 0.75rem 0;
}

.faq-content p:first-child {
  margin-top: 1rem;
}

.faq-content strong {
  color: #da77f2;
  font-weight: 700;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem;
}

.header {
  text-align: center;
  padding: 2rem 1rem;
  background: #0d0d0d;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 2.5rem;
  color: #da77f2;
  margin: 0;
}

.tagline {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: white;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #da77f2;
  color: #fff;
  border-radius: 6px;
  margin-left: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.social-icons a:hover {
  background-color: #fff;
  color: #da77f2;
}

.banner-img img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.btn, .btn-outline {
  display: inline-block;
  margin: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: #da77f2;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(218, 119, 242, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #da77f2;
  color: #da77f2;
  box-shadow: none;
}

.btn:hover {
  background: #fff;
  color: #da77f2;
}

.btn-outline:hover {
  background: #da77f2;
  color: #fff;
}

.video-section video {
  width: 100%;
  max-height: 500px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.benefits li {
  margin: 0.5rem 0;
  padding-left: 1rem;
  position: relative;
}

.benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #da77f2;
}

.about-card {
  text-align: center;
}

.about-card img {
  width: 80%;
  max-width: 300px;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.team img {
  width: 100%;
  border-radius: 12px;
  margin-top: 1rem;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery img {
  width: calc(50% - 0.5rem);
  border-radius: 12px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
}

.footer {
  background: #111;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #aaa;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.footer > div {
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
}

.footer-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
  .gallery img {
    width: 100%;
  }

  .btn, .btn-outline {
    width: 100%;
    margin: 0.5rem 0;
  }

  .logo {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .benefits li {
    font-size: 0.95rem;
  }

  .header-top {
    flex-direction: column;
    align-items: center;
  }

  .social-icons {
    margin-top: 1rem;
  }
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.slide.active {
  display: block;
}

.master-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.master-photo-wrapper {
  flex: 0 0 auto;
  height: 65%;
  overflow: hidden;
}

.master-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.master-info {
  flex: 1;
  background: #9919c4;
  color: #fff;
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  top: -13px;
  position: relative;
}


.master-info h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: bold;
}


.dots {
  text-align: center;
  margin-top: 16px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #888;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #c975e9;
}

#director-slider {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 4 / 3;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background: #000;
}

#director-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  border-radius: 12px;
}

#director-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.director-photo {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ПОКАЗЫВАЕТ ВСЮ ФОТОГРАФИЮ */
  object-position: center;
  background: #000;
  display: block;
  border-radius: 12px;
}



.instagram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  max-width: 360px;
  margin: 0 auto 20px;

  border: 2px solid #da77f2;
  padding: 16px;
  color: #da77f2;
  text-decoration: none;
  border-radius: 10px;

  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  background: transparent;

  transition: all 0.3s ease;
}

.instagram-btn:hover {
  background-color: #da77f230;
}

.instagram-btn i {
  font-size: 20px;
}

.double-slider {
  max-width: 900px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
}

.double-photo {
  display: flex;
  gap: 10px;
}

.double-photo img {
  width: 50%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

#piercing-slider {
  max-width: 800px;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
}

.piercing-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.piercing-caption {
  text-align: left;
  margin: 16px auto 0;
  max-width: 800px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-left: 8px;
}

#education-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.education-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.education-caption {
  text-align: left;
  max-width: 800px;
  margin: 16px auto 48px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  padding-left: 8px;
}

/* ==================== */
/* УЛУЧШЕННАЯ HERO-СЕКЦИЯ */
/* ==================== */

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.logo-wrapper {
  margin-bottom: 1rem;
}

.logo-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(218, 119, 242, 0.3);
  box-shadow: 0 0 30px rgba(218, 119, 242, 0.4);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  border-color: rgba(218, 119, 242, 0.6);
  box-shadow: 0 0 50px rgba(218, 119, 242, 0.6);
}

.hero-title {
  font-size: 50px;
  color: #da77f2 !important;
  margin: 0 0 1.5rem 0;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  color: #fff;
}

.hero-tagline .location {
  color: #da77f2;
  font-weight: 700;
}

.hero-tagline .motto {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-size: 18px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 1.5rem 0;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 28px;
  color: #da77f2;
  background: rgba(218, 119, 242, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(218, 119, 242, 0.2);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(218, 119, 242, 0.3);
}

.social-icon:active {
  transform: translateY(-2px) scale(1.05);
}

/* Иконки соцсетей в углу */
.social-links-corner {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icon-corner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: rgba(218, 119, 242, 0.7);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(5px);
}

.social-icon-corner:hover {
  background: rgba(218, 119, 242, 0.2);
  color: #da77f2;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(218, 119, 242, 0.3);
}

@media (max-width: 768px) {
  .social-links-corner {
    top: 15px;
    right: 15px;
  }
  
  .social-icon-corner {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}


.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 0;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, #da77f2 0%, #b857d4 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(218, 119, 242, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e590f7 0%, #c96de0 100%);
  box-shadow: 0 6px 25px rgba(218, 119, 242, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #da77f2;
  border: 2px solid #da77f2;
}

.btn-secondary:hover {
  background: rgba(218, 119, 242, 0.1);
  border-color: #e590f7;
  color: #e590f7;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(218, 119, 242, 0.3);
}

.scroll-indicator {
  margin-top: 2rem;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  font-size: 60px;
  color: #da77f2;
  font-weight: 800;
  display: inline-block;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Дополнительная адаптация под мобильные (до 768px) */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 40px !important;
  }

  .tagline {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  
  /* Адаптивные стили для hero-секции */
  .logo-image {
    width: 120px;
    height: 120px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-tagline {
    font-size: 16px;
    padding: 0 10px;
  }
  
  .hero-tagline .motto {
    font-size: 15px;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 15px;
    padding: 0 15px;
  }
  
  .cta-buttons {
    padding: 0;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 360px;
    padding: 14px 20px;
    font-size: 15px;
    box-sizing: border-box;
  }
  
  .scroll-arrow {
    font-size: 50px;
  }

  .container {
    padding: 0.5rem;
  }

  .btn, .btn-outline, .instagram-btn {
    font-size: 16px;
    padding: 14px 10px;
    width: 100% !important;
    margin: 10px 0;
    box-sizing: border-box;
  }

  .block-text {
    font-size: 14px !important;
    line-height: 1.5;
    padding: 0 10px;
  }

  /* FAQ мобильные стили */
  .faq summary {
    font-size: 1rem;
    padding: 1.2rem 3rem 1.2rem 1.2rem;
  }
  
  .faq summary::after {
    font-size: 1.5rem;
    right: 1.2rem;
  }
  
  .faq-content {
    font-size: 14px;
    padding: 0 1.2rem 1.2rem 1.2rem;
  }

  iframe {
    height: 250px !important;
  }

  .swiper-slide img {
    height: 180px;
  }

  .card-content h3 {
    font-size: 16px;
  }

  .card-content p {
    font-size: 13px;
  }

  .map iframe {
    height: 250px;
  }

  .video-background .content {
    padding-top: 15%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo-wrapper {
    margin-bottom: 0.75rem;
  }

  .social-icons a {
    margin: 0 5px;
    font-size: 28px;
  }

  .footer {
    font-size: 13px;
    padding: 1rem 0;
  }
  
  .footer-container {
    padding: 0 0.5rem;
  }

  summary {
    font-size: 16px;
  }
}

/* Блок филиалов */
.branches-block {
  margin-bottom: 15px;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, rgba(218, 119, 242, 0.1) 0%, rgba(184, 87, 212, 0.1) 100%);
  border: 2px solid rgba(218, 119, 242, 0.3);
  border-radius: 15px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .branches-block {
    padding: 15px 10px;
  }
}

/* Красивые списки */
.price-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.price-list li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.2s ease;
}

.price-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #da77f2;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.price-list li:hover {
  color: #fff;
  padding-left: 30px;
}

.price-list li:hover:before {
  color: #e590f7;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .price-list li {
    font-size: 14px;
    padding: 6px 0 6px 20px;
  }
  
  .price-list li:before {
    font-size: 20px;
  }
}

/* Эффект наведения для кнопок записи */
button[onclick="openBookingModal()"] {
  transition: all 0.3s ease;
}

button[onclick="openBookingModal()"]:hover {
  background: linear-gradient(135deg, #e590f7 0%, #c96de0 100%) !important;
  box-shadow: 0 8px 35px rgba(218, 119, 242, 0.6) !important;
  transform: translateY(-2px);
}

/* Стили для слайдера отзывов */
.reviews-swiper-container {
  margin: 30px 0;
  padding: 20px 0;
  overflow: hidden;
}

.reviews-swiper {
  width: 100%;
  padding: 20px 10px 50px;
}

.reviews-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.review-card {
  background: linear-gradient(135deg, rgba(218, 119, 242, 0.1) 0%, rgba(184, 87, 212, 0.05) 100%);
  border: 1px solid rgba(218, 119, 242, 0.3);
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(218, 119, 242, 0.3);
  border-color: rgba(218, 119, 242, 0.5);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #da77f2 0%, #b857d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.review-info {
  flex: 1;
}

.review-name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.review-stars {
  color: #da77f2;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Адаптивность для отзывов */
@media screen and (max-width: 768px) {
  .review-card {
    padding: 20px;
  }
  
  .review-avatar {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .review-name {
    font-size: 16px;
  }
  
  .review-stars {
    font-size: 14px;
  }
  
  .review-text {
    font-size: 14px;
  }
  
  .reviews-swiper {
    padding: 10px 5px 50px;
  }
}

/* Стили для пагинации отзывов */
.reviews-swiper .swiper-pagination {
  bottom: 10px !important;
}

.reviews-swiper .swiper-pagination-bullet {
  background: rgba(218, 119, 242, 0.3);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.reviews-swiper .swiper-pagination-bullet-active {
  background: #da77f2;
  width: 30px;
  border-radius: 5px;
}

button[onclick="openBookingModal()"]:active {
  transform: translateY(0);
}

/* Стили для промо-акции */
.promo-banner {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 10px;
  padding: 12px 20px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  animation: promoPulse 2s ease-in-out infinite;
}

.promo-banner-icon {
  font-size: 24px;
  animation: promoShake 1s ease-in-out infinite;
}

.promo-banner-text {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  text-align: center;
}

.promo-banner-text strong {
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
}

@keyframes promoPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.7);
  }
}

@keyframes promoShake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

/* Промо в модальном окне */
.modal-promo {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 10px;
  padding: 15px;
  margin: 0 0 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: promoPulse 2s ease-in-out infinite;
}

.modal-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: promoShine 3s linear infinite;
}

@keyframes promoShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.modal-promo-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: inline-block;
  animation: promoShake 1s ease-in-out infinite;
}

.modal-promo-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-promo-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.modal-promo-discount {
  font-size: 24px;
  font-weight: 900;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin: 6px 0 0;
}

/* Адаптивность для промо */
@media screen and (max-width: 768px) {
  .promo-banner {
    padding: 10px 15px;
    flex-direction: column;
    gap: 8px;
  }
  
  .promo-banner-text {
    font-size: 13px;
  }
  
  .promo-banner-text strong {
    font-size: 16px;
  }
  
  .modal-promo-title {
    font-size: 18px;
  }
  
  .modal-promo-text {
    font-size: 14px;
  }
  
  .modal-promo-discount {
    font-size: 24px;
  }
}

/* Стили для улучшенной статистики */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background: linear-gradient(135deg, rgba(218, 119, 242, 0.1) 0%, rgba(184, 87, 212, 0.05) 100%);
  border: 1px solid rgba(218, 119, 242, 0.3);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #da77f2 0%, #b857d4 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(218, 119, 242, 0.4);
  border-color: rgba(218, 119, 242, 0.6);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #da77f2 0%, #b857d4 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
}

.stat-number {
  color: #da77f2;
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 5px 0;
  font-family: 'Russo One', sans-serif;
}

.stat-label {
  color: #aaa;
  font-size: 15px;
  margin: 0;
  line-height: 1.4;
}

/* Стили для секции "Почему мы?" */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.why-card {
  background: linear-gradient(135deg, rgba(218, 119, 242, 0.08) 0%, rgba(184, 87, 212, 0.03) 100%);
  border: 2px solid rgba(218, 119, 242, 0.2);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(218, 119, 242, 0.3);
  border-color: rgba(218, 119, 242, 0.6);
  background: linear-gradient(135deg, rgba(218, 119, 242, 0.15) 0%, rgba(184, 87, 212, 0.08) 100%);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #da77f2 0%, #b857d4 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 5px 20px rgba(218, 119, 242, 0.4);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-title {
  color: #da77f2;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

/* Стили для улучшенных контактов */
.contacts-card {
  background: linear-gradient(135deg, rgba(218, 119, 242, 0.1) 0%, rgba(184, 87, 212, 0.05) 100%);
  border: 2px solid rgba(218, 119, 242, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contacts-header {
  margin-bottom: 30px;
}

.contacts-header h2 {
  color: #da77f2;
  margin: 0 0 10px 0;
  font-size: 32px;
}

.contacts-header p {
  color: #aaa;
  margin: 0;
  font-size: 16px;
}

.contact-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(218, 119, 242, 0.1);
  transform: translateX(5px);
}

.contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #da77f2;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-phone:hover {
  color: #e590f7;
  transform: scale(1.05);
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-social-btn {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(218, 119, 242, 0.2) 0%, rgba(184, 87, 212, 0.1) 100%);
  border-radius: 50%;
  color: #da77f2;
  font-size: 28px;
  transition: all 0.3s ease;
  border: 2px solid rgba(218, 119, 242, 0.3);
  text-decoration: none;
}

.contact-social-btn:hover {
  background: linear-gradient(135deg, #da77f2 0%, #b857d4 100%);
  color: #fff;
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 10px 25px rgba(218, 119, 242, 0.5);
}

/* Улучшенный футер */
.footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, #000 100%);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, transparent 0%, #da77f2 50%, transparent 100%) 1;
  padding: 40px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(218, 119, 242, 0.5) 50%, transparent 100%);
}

.footer-content {
  text-align: center;
  color: #aaa;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-content strong {
  color: #da77f2;
  font-weight: 700;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(218, 119, 242, 0.15) 0%, rgba(184, 87, 212, 0.08) 100%);
  border: 2px solid rgba(218, 119, 242, 0.3);
  border-radius: 10px;
  padding: 12px 25px;
  color: #da77f2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.footer-link:hover {
  background: linear-gradient(135deg, #da77f2 0%, #b857d4 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(218, 119, 242, 0.4);
}

/* Адаптивность для новых компонентов */
@media screen and (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .contacts-card {
    padding: 30px 20px;
  }
  
  .contacts-header h2 {
    font-size: 26px;
  }
  
  .contact-phone {
    font-size: 22px;
  }
}
