/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title.animate-in,
.hero-subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}
/* ===== TOP BAR ===== */
.top-bar {
  background: #f8f9fa;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #e9ecef;
}

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

.top-bar-info {
  display: flex;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item .icon {
  color: #a374aa;
  font-size: 12px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: #a374aa;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #8e5a91;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

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

.logo span {
  color: #666;
  font-weight: 400;
  font-size: 16px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #a374aa;
}

/* ===== BURGER MENU ===== */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  position: relative;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #a374aa;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #a374aa 0%, #8e5a91 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-content {
  padding: 80px 0 30px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-logo {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 30px;
}

.mobile-logo span {
  display: block;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.mobile-logo small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 40px;
}

.mobile-nav ul li a i {
  width: 20px;
  font-size: 16px;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 1001;
}

.close-menu:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-contact {
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mobile-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.mobile-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== HERO SECTION ===== */
.hero-new {
  position: relative;
  width: 100%;
  height: 911px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-new-background {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-new-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 50% 80%;
}

.hero-new-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.5), rgba(163, 116, 170, 0.4));
  z-index: 2;
  pointer-events: none;
}

.hero-new-content {
  position: absolute;
  top: 68%;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-new-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-new-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-new-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-new-btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-new-btn.primary {
  background-color: #ffffff5c;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

.hero-new-btn.primary:hover {
  background-color: #ffffff;
  border: 2px solid white;
  color: #a374aa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.hero-new-btn.secondary:hover {
  background-color: #fff;
  color: #a374aa;
}

/* ===== TAGLINE SECTION ===== */
.tagline-section {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.tagline-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a374aa;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.2;
}

.logo-img {
  object-fit: cover;
  height: 150px;
  border-radius: 147px;
  margin-bottom: 35px;
}

/* ===== SERVICES SECTION ===== */
.services-main {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #a374aa;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.price-icon {
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #a374aa, #8e5a91);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(163, 116, 170, 0.3);
  transition: all 0.3s ease;
}
.img-icon {
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  object-fit: cover;
  border: #956299 solid 4px;
}

.price-icon-karies {
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #a374aa, #8e5a91);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(163, 116, 170, 0.3);
  transition: all 0.3s ease;
  position: relative; /* Добавляем для позиционирования псевдоэлемента */
}

.karies-s::after,
.karies-m::after,
.karies-l::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 38px;
  width: 5px;
  height: 5px;
  background: #956299; /* Фиолетовый цвет */
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(107, 70, 193, 0.4);
}

.karies-m::after {
  top: 24px;
  right: 37px;
  width: 8px;
  height: 8px;
}

.karies-l::after {
  top: 23px;
  right: 36px;
  width: 10px;
  height: 10px;
}

.service-icon {
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #a374aa, #8e5a91);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(163, 116, 170, 0.3);
  transition: all 0.3s ease;
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.service-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-link {
  color: #a374aa;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #8e5a91;
}

/* ===== ABOUT SECTION ===== */
.about-main {
  padding: 100px 0;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.about-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.about-cta {
  display: inline-block;
  padding: 15px 30px;
  background: #a374aa;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about-cta:hover {
  background: #8e5a91;
  transform: translateY(-2px);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #a374aa, #8e5a91);
  border-radius: 50%;
  z-index: -1;
}

/* ===== RATINGS SECTION ===== */
.ratings-section {
  padding: 100px 0;
}

.ratings-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.rating-card {
  background: white;
  padding: 40px;
  width: 50%;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1;
}

.rating-icon img {
  border-radius: 10px;
}

.rating-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 20px 0 10px;
}

.rating-link a {
  color: #a374aa;
  text-decoration: none;
}

.rating-score {
  margin-top: 20px;
  font-size: 18px;
  color: #666;
}

.rating-score strong {
  color: #a374aa;
  font-size: 2rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-main {
  padding: 100px 0;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
  margin-bottom: 20px;
}

.star {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-card blockquote {
  font-style: italic;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.author-info h4 {
  color: #333;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: #a374aa;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo a {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.footer-info p {
  margin: 10px 0;
  color: #eeecec;
}

.footer-nav h3,
.footer-social h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: #eeecec;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #a374aa;
}

.social-kont {
  color: #a374aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link {
  color: #eeecec;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #a374aa;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #dfdfdf;
  color: #ffffff;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-new-content {
    top: 40%;
  }

  .hero-new-image {
    transform: scale(1.2) translateX(10px) translateY(-20px);
  }
  .hero-content-prices {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content-beautiful {
    display: flex !important;
    flex-direction: column;
  }

  .cta-content-beautiful {
    display: flex !important;
    flex-direction: column;
  }

  .cta-content-prices {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
@media (max-width: 768px) {
  .cta-content-media {
    display: flex !important;
    flex-direction: column;
  }

  .hero-new-title {
    font-size: 2rem;
  }

  .social-links {
    align-items: center;
  }

  .hero-new {
    height: fit-content;
  }

  .hero-new-content {
    margin: 50px 0;
  }

  .hero-new-subtitle {
    font-size: 1rem;
  }

  .hero-new-actions {
    gap: 15px;
  }

  .hero-new-btn {
    font-size: 0.8rem;
    width: 155px;
    justify-content: center;
    align-content: center;
  }

  .top-bar {
    display: none;
  }

  .header {
    padding: 15px 0;
  }

  .media-hero-beautiful {
    min-height: 80vh !important;
  }

  .header-container {
    padding: 0 20px;
  }

  .main-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .logo a {
    font-size: 22px;
  }

  .mobile-nav {
    width: 100%;
  }

  .hero-main {
    min-height: 70vh;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .tagline-text {
    font-size: 1.8rem;
    padding: 0 20px;
  }

  .services-main,
  .about-main,
  .testimonials-main,
  .ratings-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-text h2 {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .tagline-text {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .service-item,
  .testimonial-card {
    padding: 25px 15px;
  }

  .mobile-nav {
    width: 100%;
  }

  .mobile-nav-content {
    padding: 60px 0 20px 0;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* ===== FOCUS STYLES ===== */
button:focus,
a:focus {
  outline: 2px solid #a374aa;
  outline-offset: 2px;
}

/* ===== LOADING STATES ===== */
.loaded {
  opacity: 1;
}

body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.loaded {
  opacity: 1;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
  color: #a374aa;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: #8e5a91;
}

.breadcrumb .separator {
  margin: 0 10px;
  color: #666;
}

.breadcrumb span:last-child {
  color: #666;
}

/* ===== ACTIVE NAVIGATION ===== */
.main-nav a.active {
  color: #a374aa;
  font-weight: 600;
}

/* ===== CONTACTS SECTION ===== */
.contacts-section {
  padding: 80px 0;
}

/* .contacts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
} */

.contacts-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.contacts-info h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #a374aa;
  margin-bottom: 40px;
}

.contact-block {
  display: flex;
  flex-direction: row-reverse;
  gap: 250px;
}

.contact-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.address-details {
  margin-bottom: 30px;
}

.address-details p {
  color: #666;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.address-details p i {
  color: #a374aa;
  width: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-item i {
  color: #a374aa;
  width: 20px;
}

.contact-item strong {
  color: #333;
  font-size: 18px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #25d366;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 20px 0 30px 0;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.working-hours,
.social-networks {
  margin-top: 30px;
}

.working-hours h4,
.social-networks h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.working-hours h4 i,
.social-networks h4 i {
  color: #a374aa;
}

.working-hours p {
  color: #666;
  margin-bottom: 5px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.social-links .social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eeecec;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links .social-link:hover {
  color: #a374aa;
}

.social-links .social-link i {
  width: 20px;
  font-size: 16px;
}

/* ===== MAP CONTAINER ===== */
.map-container {
  position: relative;
  height: 500px;
  border-radius: 15px;
  width: 600px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-placeholder iframe {
  border-radius: 15px;
}

/* ===== CASES PAGE STYLES ===== */

/* Beautiful Hero Section */
.cases-hero-beautiful {
  position: relative;
  min-height: fit-content;
  padding: 70px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(163, 116, 170, 0.1), rgba(142, 90, 145, 0.05));
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content-beautiful {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text-beautiful {
  animation: slideInLeft 1s ease-out;
}

.breadcrumb-beautiful {
  margin-bottom: 30px;
  font-size: 14px;
}

.breadcrumb-beautiful a {
  color: #a374aa;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-beautiful .separator {
  margin: 0 15px;
  color: #a374aa;
  font-size: 12px;
}

.breadcrumb-beautiful span:last-child {
  color: #666;
}

.hero-title-beautiful {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}

.title-word {
  display: inline-block;
  position: relative;
  color: #333;
  animation: titleReveal 1.5s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.title-word:nth-child(2) {
  animation-delay: 0.8s;
}

.title-accent {
  display: block;
  color: #a374aa;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 10px;
  animation: fadeInUp 1s ease-out 1.2s both;
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle-beautiful {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-stats-beautiful {
  display: flex;
  gap: 40px;
  animation: fadeInUp 1s ease-out 1.4s both;
}

.stat-beautiful {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a374aa;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.hero-visual-beautiful {
  animation: slideInRight 1s ease-out;
}

.showcase-container {
  position: relative;
}

.showcase-main {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.before-after-showcase {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.showcase-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.image-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.showcase-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.divider-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #a374aa, #8e5a91);
}

.divider-icon {
  font-size: 20px;
  color: #a374aa;
}

.showcase-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.showcase-tags {
  display: flex;
  gap: 10px;
}

.showcase-tags .tag {
  background: #f8f9fa;
  color: #a374aa;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.showcase-thumbnails {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail.active {
  opacity: 1;
  border-color: #a374aa;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cases Gallery */
.cases-gallery-beautiful {
  padding: 40px 0 100px;
  background: white;
}

.cases-grid-beautiful {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.case-card-beautiful {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.case-card-beautiful:nth-child(1) {
  animation-delay: 0.1s;
}
.case-card-beautiful:nth-child(2) {
  animation-delay: 0.2s;
}
.case-card-beautiful:nth-child(3) {
  animation-delay: 0.3s;
}
.case-card-beautiful:nth-child(4) {
  animation-delay: 0.4s;
}
.case-card-beautiful:nth-child(5) {
  animation-delay: 0.5s;
}
.case-card-beautiful:nth-child(6) {
  animation-delay: 0.6s;
}

.case-card-beautiful:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.case-card-beautiful.featured {
  border: 2px solid #a374aa;
  position: relative;
}

.case-card-beautiful.featured::before {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #a374aa;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
}

.case-image-beautiful {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.before-after-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-img {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: clip-path 0.3s ease;
}

.after-img {
  z-index: 1;
}

.image-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.after-img .image-overlay {
  left: auto;
  right: 15px;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: ew-resize;
}

.handle-button {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #a374aa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.handle-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.case-content-beautiful {
  padding: 30px;
}

.case-header-beautiful {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.case-header-beautiful h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  flex: 1;
  margin-right: 15px;
}

.case-rating {
  display: flex;
  gap: 2px;
}

.case-rating .star {
  color: #ffc107;
  font-size: 14px;
}

.case-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-details-beautiful {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.detail-item i {
  color: #a374aa;
  width: 16px;
}

.case-tags-beautiful {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.case-tags-beautiful .tag {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.case-tags-beautiful .tag.primary {
  background: #a374aa;
  color: white;
}

.case-tags-beautiful .tag:not(.primary) {
  background: #f8f9fa;
  color: #666;
}

.load-more-beautiful {
  text-align: center;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid #a374aa;
  color: #a374aa;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.load-more-btn:hover {
  background: #a374aa;
  color: white;
  transform: translateY(-2px);
}

/* Patient Stories */
.patient-stories-beautiful {
  padding: 100px 0;
  background: #f8f9fa;
}

.stories-header-beautiful {
  text-align: center;
  margin-bottom: 60px;
}

.stories-header-beautiful h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.stories-header-beautiful p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.stories-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.story-card-beautiful {
  flex: 1 1 300px;
  max-width: 400px;
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.story-card-beautiful:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

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

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.story-content {
  text-align: center;
}

.story-rating {
  margin-bottom: 20px;
}

.story-rating .star {
  color: #ffc107;
  font-size: 16px;
  margin: 0 2px;
}

.story-content blockquote {
  font-style: italic;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
}

.story-author h4 {
  color: #333;
  font-weight: 600;
  margin-bottom: 5px;
}

.story-author p {
  color: #a374aa;
  font-size: 14px;
}
/* Beautiful CTA */
.cta-beautiful {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #a374aa 0%, #8e5a91 100%);
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s ease-in-out infinite;
}

.cta-shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cta-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 15%;
  animation-delay: 3s;
}

.cta-shape-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 70%;
  animation-delay: 6s;
}

.cta-content-beautiful {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-text-beautiful {
  color: white;
}

.cta-text-beautiful h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text-beautiful p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-benefits-beautiful {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-beautiful {
  display: flex;
  align-items: center;
  gap: 15px;
}

.benefit-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.cta-action-beautiful {
  text-align: center;
}

.cta-btn-beautiful {
  position: relative;
  display: inline-block;
  padding: 20px 40px;
  background: white;
  color: #a374aa;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
}

.cta-btn-beautiful:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-glow {
  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.5s ease;
}

.cta-btn-beautiful:hover .btn-glow {
  left: 100%;
}

.cta-contact-beautiful {
  color: white;
}

.cta-contact-beautiful span {
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
}

.cta-contact-beautiful a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

/* Animation keyframes */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Filter animations */
.case-card-beautiful.filter-hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.case-card-beautiful.filter-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Loading states */
.cases-grid-beautiful.loading .case-card-beautiful {
  opacity: 0.5;
  pointer-events: none;
}

.load-more-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.load-more-btn.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== MEDIA PAGE STYLES ===== */

/* Beautiful Hero Section */
.media-hero-beautiful {
  position: relative;
  min-height: 100vh;
  padding: 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(164deg, #a374aa 50%, #78537d 90%);
}

.hero-background-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-media-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.media-shape {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  animation: floatMedia 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.media-shape-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.media-shape-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.media-shape-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.media-shape-4 {
  top: 10%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes floatMedia {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 1;
  }
}

.hero-content-media {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.breadcrumb-media {
  margin-bottom: 30px;
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumb-media a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-media a:hover {
  color: white;
}

.breadcrumb-media .separator {
  margin: 0 15px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-title-media {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}

.title-word-media {
  display: inline-block;
  position: relative;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.title-accent-media {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 15px;
  opacity: 0.9;
}
@keyframes titleGlow {
  0% {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4), 0 0 16px rgba(255, 255, 255, 0.2);
  }
}

.hero-subtitle-media {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 50px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-media {
  margin-top: 40px;
}

.scroll-to-videos-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.scroll-to-videos-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-ripple {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.scroll-to-videos-btn:hover .btn-ripple {
  left: 100%;
}

/* Filter Section */
.media-filter-section {
  padding: 80px 0 40px;
  background: white;
}

.filter-header-media {
  text-align: center;
  margin-bottom: 50px;
}

.filter-header-media h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.filter-header-media p {
  font-size: 18px;
  color: #666;
}

.media-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.media-filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  color: #666;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.media-filter-btn:hover,
.media-filter-btn.active {
  background: #a374aa;
  border-color: #a374aa;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.media-filter-btn i {
  font-size: 16px;
}

/* Video Gallery */
.video-gallery-beautiful {
  padding: 40px 0 100px;
  background: #f8f9fa;
  display: flex;
  width: 80%;
  justify-self: center;
}

.gallery-grid-beautiful {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.video-card-beautiful {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  cursor: pointer;
}

.video-card-beautiful:nth-child(1) {
  animation-delay: 0.1s;
}
.video-card-beautiful:nth-child(2) {
  animation-delay: 0.2s;
}
.video-card-beautiful:nth-child(3) {
  animation-delay: 0.3s;
}
.video-card-beautiful:nth-child(4) {
  animation-delay: 0.4s;
}
.video-card-beautiful:nth-child(5) {
  animation-delay: 0.5s;
}
.video-card-beautiful:nth-child(6) {
  animation-delay: 0.6s;
}

.video-card-beautiful:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-card-beautiful.featured {
  border: 2px solid #a374aa;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #a374aa;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
}

.video-thumbnail-beautiful {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.video-thumbnail-beautiful img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 40%;
  transition: transform 0.5s ease;
}

.video-card-beautiful:hover .video-thumbnail-beautiful img {
  transform: scale(1.05);
}

.video-overlay-beautiful {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(164deg, #a374aa80 50%, #78537d80 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.video-card-beautiful:hover .video-overlay-beautiful {
  opacity: 1;
}

.play-button-beautiful {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a374aa;
  font-size: 24px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.play-button-beautiful:hover {
  background: white;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.video-info-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-category,
.video-duration {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.video-quality-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  z-index: 2;
}

.video-content-beautiful {
  padding: 25px;
}

.video-content-beautiful h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
}

.video-content-beautiful p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 14px;
}

.video-meta-beautiful {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 12px;
  color: #999;
}

.video-views,
.video-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-tags-beautiful {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-beautiful {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
}

.tag-beautiful.primary {
  background: #a374aa;
  color: white;
}

.tag-beautiful:not(.primary) {
  background: #f8f9fa;
  color: #666;
}

.load-more-media {
  text-align: center;
}

.load-more-btn-media {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid #a374aa;
  color: #a374aa;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.load-more-btn-media:hover {
  background: #a374aa;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Video Statistics */
.video-stats-beautiful {
  padding: 100px 0;
  background: white;
}

.stats-header-beautiful {
  text-align: center;
  margin-bottom: 60px;
}

.stats-header-beautiful h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.stats-header-beautiful p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.stats-grid-beautiful {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-card-beautiful {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stat-card-beautiful:hover {
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.stat-icon-beautiful {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #a374aa 0%, #8e5a91 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

.stat-number-big {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.stat-label-big {
  font-size: 1.2rem;
  font-weight: 600;
  color: #a374aa;
  margin-bottom: 5px;
}

.stat-description {
  font-size: 14px;
  color: #666;
}

/* Video Modal */
.video-modal-beautiful {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal-beautiful.active {
  display: flex;
}

.modal-overlay-beautiful {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal-content-beautiful {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header-beautiful {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #e9ecef;
}

.modal-header-beautiful h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

.close-button-beautiful {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-button-beautiful:hover {
  background: #e9ecef;
  color: #333;
}

.modal-body-beautiful {
  padding: 0;
}

.video-container-beautiful {
  position: relative;
  width: 100%;
  height: 500px;
  background: #000;
}

.video-container-beautiful iframe {
  width: 100%;
  height: 100%;
}

.video-controls-beautiful {
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
  background: #f8f9fa;
}

.control-btn-beautiful {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 25px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.control-btn-beautiful:hover {
  background: #a374aa;
  border-color: #a374aa;
  color: white;
}

.control-btn-beautiful:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* CTA Section */
.cta-content-media {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.media-cta-beautiful {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #a374aa 0%, #8e5a91 100%);
  overflow: hidden;
}

.cta-background-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-shapes-media {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cta-shape-media {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatMedia 10s ease-in-out infinite;
}

.cta-shape-media-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cta-shape-media-2 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  right: 15%;
  animation-delay: 4s;
}

.cta-shape-media-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  left: 70%;
  animation-delay: 8s;
}

.cta-text-media {
  color: white;
}

.cta-text-media h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text-media p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-benefits-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-media {
  display: flex;
  align-items: center;
  gap: 15px;
}

.benefit-icon-media {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.cta-action-media {
  text-align: center;
}

.cta-btn-media {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: white;
  color: #a374aa;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
}

.cta-btn-media:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-glow-media {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-btn-media:hover .btn-glow-media {
  left: 100%;
}

.cta-contact-media {
  color: white;
}

.cta-contact-media span {
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
}

.cta-contact-media a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

/* Filter animations */
.video-card-beautiful.filter-hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.video-card-beautiful.filter-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Loading states */
.gallery-grid-beautiful.loading .video-card-beautiful {
  opacity: 0.5;
  pointer-events: none;
}

.load-more-btn-media.loading {
  opacity: 0.7;
  pointer-events: none;
}

.load-more-btn-media.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #f8f9fa;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #e9ecef;
}

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

.top-bar-info {
  display: flex;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item .icon {
  color: #a374aa;
  font-size: 12px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: #a374aa;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #8e5a91;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

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

.logo span {
  color: #666;
  font-weight: 400;
  font-size: 16px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #a374aa;
}

/* ===== BURGER MENU ===== */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  position: relative;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #a374aa;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #a374aa 0%, #8e5a91 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-content {
  padding: 80px 0 30px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-logo {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 30px;
}

.mobile-logo span {
  display: block;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.mobile-logo small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 40px;
}

.mobile-nav ul li a i {
  width: 20px;
  font-size: 16px;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 1001;
}

.close-menu:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-contact {
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mobile-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.mobile-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(163, 116, 170, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

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

.logo a {
  font-size: 32px;
  font-weight: 700;
  color: #a374aa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
}

.logo span {
  color: #666;
  font-weight: 400;
  font-size: 18px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 10px 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #a374aa, #8e5a91);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: #a374aa;
}

/* ===== BURGER MENU ===== */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.burger:hover {
  background: rgba(163, 116, 170, 0.1);
}

.burger span {
  width: 28px;
  height: 3px;
  background: #a374aa;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #a374aa 0%, #8e5a91 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -10px 0 30px rgba(163, 116, 170, 0.3);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-content {
  padding: 100px 0 40px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-logo {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 30px;
}

.mobile-logo span {
  display: block;
  color: white;
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-logo small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 40px;
  transform: translateX(5px);
}

.mobile-nav ul li a i {
  width: 24px;
  font-size: 18px;
  text-align: center;
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1001;
}

.close-menu:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-contact {
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: auto;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.mobile-phone:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.mobile-social {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.mobile-social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.1);
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(163, 116, 170, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== НОВЫЕ СТИЛИ ДЛЯ КОМПАКТНЫХ КАРТОЧЕК ===== */

/* Services Content */
.services-content-section {
  padding: 40px 0 100px;
  background: #f8f9fa;
}

.service-content {
  display: none;
}

.service-content.active {
  display: block;
  animation: fadeInUp 0.6s ease-out;
}

.service-header {
  text-align: center;
  margin-bottom: 50px;
}

.service-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.service-header p {
  font-size: 18px;
  color: #666;
}

/* Новый список услуг */
.services-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Основная часть карточки */
.service-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-main:hover {
  background: #f8f9fa;
}

.service-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.service-content-main h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.expand-icon {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.expand-icon i {
  transition: transform 0.3s ease;
}

.service-item.expanded .expand-icon {
  background: #a374aa;
  color: white;
}

.service-item.expanded .expand-icon i {
  transform: rotate(180deg);
}

/* Детали услуги */
.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f8f9fa;
}

.service-item.expanded .service-details {
  max-height: 1000px;
}

.details-content {
  padding: 0 30px 30px;
}

.service-time {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: #666;
  font-size: 14px;
  padding-top: 20px;
}

.service-time i {
  color: #a374aa;
}

.service-includes,
.service-advantages {
  margin-bottom: 25px;
}

.service-includes h4,
.service-advantages h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.service-includes ul,
.service-advantages ul {
  list-style: none;
  padding: 0;
}

.service-includes li,
.service-advantages li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.service-includes li::before,
.service-advantages li::before {
  content: "✓";
  color: #a374aa;
  font-weight: bold;
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  border-left: 4px solid #a374aa;
}

.service-note i {
  color: #a374aa;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-note span {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.service-actions {
  text-align: center;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  background: #a374aa;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.book-service-btn:hover {
  background: #8e5a91;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(163, 116, 170, 0.3);
}

/* ===== HERO SECTION ===== */
.prices-hero-beautiful {
  position: relative;
  min-height: fit-content;
  padding: 70px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #a374aa 0%, #8e5a91 50%, #7a4d7e 100%);
}

.hero-background-prices {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background-prices::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.floating-prices-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.prices-shape {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  animation: floatPrices 10s ease-in-out infinite;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.prices-shape-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.prices-shape-2 {
  top: 55%;
  right: 12%;
  animation-delay: 2.5s;
}

.prices-shape-3 {
  bottom: 25%;
  left: 15%;
  animation-delay: 5s;
}

.prices-shape-4 {
  top: 8%;
  right: 25%;
  animation-delay: 7.5s;
}

@keyframes floatPrices {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) rotate(90deg) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-40px) rotate(180deg) scale(1);
    opacity: 1;
  }
  75% {
    transform: translateY(-20px) rotate(270deg) scale(0.9);
    opacity: 0.8;
  }
}

.hero-content-prices {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text-prices {
  color: white;
  animation: slideInLeft 1.2s ease-out;
}

.breadcrumb-prices {
  margin-bottom: 35px;
  font-size: 15px;
  opacity: 0.9;
  font-weight: 500;
}

.breadcrumb-prices a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 20px;
}

.breadcrumb-prices a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.breadcrumb-prices .separator {
  margin: 0 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

.hero-title-prices {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 35px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-word-prices {
  display: inline-block;
  position: relative;
  animation: titleRevealPrices 1.8s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-word-prices:nth-child(2) {
  animation-delay: 1s;
}

.title-accent-prices {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 20px;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease-out 1.4s both;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes titleRevealPrices {
  0% {
    opacity: 0;
    transform: translateY(60px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle-prices {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 45px;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease-out 1.2s both;
  color: rgba(255, 255, 255, 0.9);
}

.hero-features-prices {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 45px;
  animation: fadeInUp 1.2s ease-out 1.6s both;
}

.feature-prices {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.12);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.feature-prices:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(15px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-prices {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-content-prices h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
}

.feature-content-prices p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.5;
}

.hero-cta-prices {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out 2s both;
}

.scroll-to-prices-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-to-prices-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.consultation-btn-prices {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: white;
  color: #a374aa;
  text-decoration: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.4s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.consultation-btn-prices:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
  background: #f8f9fa;
}

.btn-ripple-prices {
  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.8s ease;
}

.scroll-to-prices-btn:hover .btn-ripple-prices {
  left: 100%;
}

.hero-visual-prices {
  animation: slideInRight 1.2s ease-out;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.price-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.price-card-hero {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  color: white;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.price-card-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.price-card-hero:hover::before {
  left: 100%;
}

.price-card-hero:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.price-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.price-card-header i {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.price-card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.price-card-price {
  margin-bottom: 30px;
}

.price-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.12);
  padding: 25px 35px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.guarantee-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-5px);
}

.guarantee-badge i {
  font-size: 28px;
  color: #4ade80;
}

.guarantee-badge strong {
  font-size: 1.4rem;
  display: block;
  font-weight: 800;
}

.guarantee-badge span {
  font-size: 15px;
  opacity: 0.8;
  font-weight: 500;
}

/* ===== SERVICES NAVIGATION ===== */
.services-nav-section {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-nav-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-nav-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #a374aa, #8e5a91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-nav-header p {
  font-size: 19px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.data-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

.status-loading {
  color: #a374aa;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(163, 116, 170, 0.1);
  border-radius: 25px;
}

.status-success {
  color: #28a745;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 25px;
}

.status-error {
  color: #dc3545;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 25px;
}

.last-update {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.services-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  background: white;
  border: 3px solid #e9ecef;
  border-radius: 50px;
  color: #666;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a374aa, #8e5a91);
  transition: left 0.4s ease;
  z-index: -1;
}

.service-tab:hover::before,
.service-tab.active::before {
  left: 0;
}

.service-tab:hover,
.service-tab.active {
  color: white;
  border-color: #a374aa;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(163, 116, 170, 0.4);
}

.service-tab i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.service-tab:hover i,
.service-tab.active i {
  transform: scale(1.2);
}

/* ===== SERVICES CONTENT ===== */
.services-content-section {
  padding: 60px 0 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-content {
  display: none;
}

.service-content.active {
  display: block;
  animation: fadeInUp 0.8s ease-out;
}

.service-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #a374aa, #8e5a91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-header p {
  font-size: 19px;
  color: #666;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

.service-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(163, 116, 170, 0.15);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #a374aa, #8e5a91);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(163, 116, 170, 0.25);
  border-color: rgba(163, 116, 170, 0.2);
}

.service-card.featured {
  border: 3px solid #a374aa;
  position: relative;
  background: linear-gradient(135deg, rgba(163, 116, 170, 0.02) 0%, white 100%);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #a374aa, #8e5a91);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(163, 116, 170, 0.3);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 35px 35px 25px;
}

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

.service-title {
  flex: 1;
}

.service-title h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-price .price-value {
  font-size: 2rem;
  font-weight: 800;
  color: #a374aa;
  text-shadow: 0 2px 5px rgba(163, 116, 170, 0.2);
}
.price-smaller {
  font-size: 1.4rem;
  font-weight: 800;
  color: #a374aa;
  text-shadow: 0 2px 5px rgba(163, 116, 170, 0.2);
}

.price-currency-smaller {
  font-size: 1.4rem;
  font-weight: 800;
  color: #a374aa;
}

.price-currency {
  font-size: 2rem;
  font-weight: 800;
  color: #a374aa;
}

.service-time {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 20px;
  background: rgba(163, 116, 170, 0.08);
  border-radius: 15px;
}

.service-time i {
  color: #a374aa;
  font-size: 16px;
}

.service-includes,
.service-advantages {
  margin-bottom: 25px;
}

.service-includes h4,
.service-advantages h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.service-includes ul,
.service-advantages ul {
  list-style: none;
  padding: 0;
}

.service-includes li,
.service-advantages li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.service-includes li::before,
.service-advantages li::before {
  content: "✓";
  color: #a374aa;
  font-weight: bold;
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 16px;
}

.service-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(163, 116, 170, 0.08) 0%, rgba(163, 116, 170, 0.04) 100%);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 25px;
  border-left: 4px solid #a374aa;
}

.service-note i {
  color: #a374aa;
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-note span {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  font-weight: 500;
}

.service-actions {
  padding: 0 35px 35px;
}

.book-service-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #a374aa, #8e5a91);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.book-service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.book-service-btn:hover::before {
  left: 100%;
}

.book-service-btn:hover {
  background: linear-gradient(135deg, #8e5a91, #7a4d7e);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(163, 116, 170, 0.4);
}

/* ===== LOADING STATES ===== */
.price-loading {
  display: inline-block;
  width: 80px;
  height: 24px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.price-error {
  color: #dc3545;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
}

/* ===== CTA SECTION ===== */
.prices-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #a374aa 0%, #8e5a91 50%, #7a4d7e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.prices-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.cta-content-prices {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-text-prices h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-text-prices p {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

.cta-features-prices {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  font-size: 16px;
}

.cta-feature i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.cta-actions-prices {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cta-phone-btn,
.cta-whatsapp-btn,
.cta-contact-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px 35px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
}

.cta-phone-btn:hover,
.cta-whatsapp-btn:hover,
.cta-contact-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-phone-btn i {
  color: #28a745;
  font-size: 22px;
}

.cta-whatsapp-btn i {
  color: #25d366;
  font-size: 22px;
}

.cta-contact-btn i {
  color: #ffc107;
  font-size: 22px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .contact-block {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .price-smaller {
    font-size: 1.3rem;
  }
  .price-currency-smaller {
    font-size: 1rem;
    font-weight: 800;
    color: #a374aa;
  }
  .map-container {
    height: 300px;
    margin-bottom: 40px;
    width: 95%;
  }
  .hero-content-prices {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .cases-grid-beautiful {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stories-header-beautiful h2 {
    font-size: 2rem;
  }

  .case-image-beautiful {
    height: 250px;
  }

  .case-card-beautiful {
    max-width: 90%;
  }

  .cta-content-prices {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-grid-beautiful {
    display: block;
  }

  .video-card-beautiful {
    margin-bottom: 30px;
  }

  .service-price .price-value {
    font-size: 1.3rem;
  }

  .service-price {
    flex-direction: column;
    margin-bottom: 15px;
  }

  .price-currency {
    font-size: 1.3rem;
  }
  .top-bar {
    display: none;
  }

  .header {
    padding: 15px 0;
  }

  .main-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-nav {
    width: 100%;
  }

  .hero-title-prices {
    font-size: 2.8rem;
  }

  .title-accent-prices {
    font-size: 1.3rem;
  }

  .hero-cta-prices {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .services-nav-header h2 {
    font-size: 2.2rem;
  }

  .services-nav-tabs {
    gap: 12px;
  }

  .service-tab {
    padding: 15px 20px;
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card {
    margin: 0 10px;
  }

  .service-card-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .price-icon {
    display: none;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .cta-text-prices h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title-prices {
    font-size: 2.2rem;
  }

  .services-nav-header h2 {
    font-size: 1.8rem;
  }

  .service-header h2 {
    font-size: 2rem;
  }

  .service-card-header {
    padding: 25px 25px 20px;
  }

  .service-details {
    padding: 0;
    margin: 0;
  }

  .service-actions {
    padding: 0 25px 25px;
  }

  .cta-text-prices h2 {
    font-size: 1.8rem;
  }

  .scroll-to-prices-btn,
  .consultation-btn-prices {
    padding: 16px 30px;
    font-size: 15px;
  }
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ АНИМАЦИИ ===== */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.service-icon {
  animation: pulse 3s ease-in-out infinite;
}

.featured-badge {
  animation: pulse 2s ease-in-out infinite;
}

/* ===== СКРОЛЛ ЭФФЕКТЫ ===== */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* ===== LANGUAGE SWITCHER ===== */
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  display: flex;
  gap: 3px;
  background: white;
  border-radius: 20px;
  padding: 4px;
  box-shadow: 0 2px 10px rgba(163, 116, 170, 0.1);
}

.lang-btn {
  padding: 6px 10px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 11px;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 32px;
}

.lang-btn:hover {
  background: rgba(163, 116, 170, 0.1);
  color: #a374aa;
}

.lang-btn.active {
  background: #a374aa;
  color: white;
}

/* ===== MOBILE LANGUAGE SWITCHER ===== */
.mobile-language-switcher {
  display: flex;
  margin-bottom: 20px;
  flex-direction: row;
  justify-content: center;
}

.mobile-lang-btn {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 50px;
  height: 50px;
}

.mobile-lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn.active {
  background: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .top-bar-right {
    gap: 15px;
  }

  .language-switcher {
    padding: 3px;
    gap: 2px;
  }

  .lang-btn {
    padding: 5px 8px;
    font-size: 10px;
    min-width: 28px;
  }
}

@media (max-width: 480px) {
  .mobile-language-switcher {
    padding: 15px 20px;
    gap: 6px;
  }

  .mobile-lang-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .language-switcher {
    gap: 1px;
  }

  .lang-btn {
    padding: 4px 6px;
    font-size: 9px;
    min-width: 24px;
  }
}

@media (max-width: 360px) {
  .lang-btn {
    padding: 3px 5px;
    font-size: 8px;
    min-width: 22px;
  }
}

