/* Booking Popup */
.booking-popup {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.65);
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: all;
  padding-top: 110px;
  box-sizing: border-box;
}
.booking-popup-content {
  background: linear-gradient(120deg, #e52d27 0%, #b31217 100%);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(229,45,39,0.18);
  padding: 48px 32px 36px 32px;
  min-width: 320px;
  max-width: 90vw;
  color: #fff;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.booking-popup-close {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 1;
}
.booking-popup-close:hover {
  opacity: 1;
}
.booking-popup-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.booking-popup-phone {
  display: inline-block;
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  text-decoration: none;
  background: rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 8px 24px;
  transition: background 0.2s;
}
.booking-popup-phone:hover {
  background: rgba(0,0,0,0.18);
}
.booking-popup-or {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #fff;
  opacity: 0.85;
}
.booking-popup-tg-btn {
  display: inline-block;
  background: #fff;
  color: #e52d27;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 30px;
  padding: 14px 38px;
  text-decoration: none;
  margin-top: 4px;
  box-shadow: 0 2px 12px rgba(229,45,39,0.12);
  transition: background 0.2s, color 0.2s;
}
.booking-popup-tg-btn:hover {
  background: #ffd700;
  color: #b31217;
}
@media (max-width: 600px) {
  .booking-popup-content {
    padding: 28px 8vw 24px 8vw;
    min-width: 0;
  }
  .booking-popup-title {
    font-size: 1.1rem;
  }
  .booking-popup-phone {
    font-size: 1.2rem;
    padding: 6px 10px;
  }
  .booking-popup-tg-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
}
/* Основные стили */
body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: #181818;
  color: #fff;
  line-height: 1.6;
}

/* Стили для ссылок */
a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #e52d27;
}

/* Исключаем кнопки и специальные ссылки */
.btn, .scroll-down, .contacts-social a, .taxi-btn {
  color: inherit;
}

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s forwards;
}
section:nth-child(even) {
  background: #222;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, #e52d27, #b31217);
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  margin: 8px 8px 0 0;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(229,45,39,0.15);
  border: none;
}
.btn:hover {
  background: linear-gradient(90deg, #b31217, #e52d27);
  color: #ffd700;
  box-shadow: 0 4px 16px rgba(229,45,39,0.25);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000000;
  backdrop-filter: blur(10px);
  transition: background-color 0.3s;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 20px;
}

.logo a {
  display: block;
  width: 200px;
  height: 80px;
  background: url('../images/IMG_7136.jpeg') no-repeat center;
  background-size: contain;
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  place-self: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #e52d27;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-number {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.phone-number:hover {
  color: #e52d27;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #e52d27;
  border-color: #e52d27;
  color: #fff;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

@media (max-width: 900px) {
  /* Layout: logo left, burger right for cleaner mobile alignment */
  .header-container { grid-template-columns: 1fr auto; align-items: center; }
  .nav-menu { display: none; }
  .header-contacts { display: none; }
  .burger-menu { display: block; justify-self: end; }
  .mobile-header-contact { display: flex; justify-self: end; }
}

.nav-menu .nav-link { padding: 8px 6px; }

.burger-menu span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

/* Compact mobile header contact block (visible on small screens, near burger) */
.mobile-header-contact {
  display: none; /* hidden on desktop */
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
}
.mobile-header-contact .mhc-label {
  font-size: 12px;
  color: #fff;
  opacity: 0.95;
}
.mobile-header-contact .mhc-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  /* align directly under the fixed header (approx. 56px) to avoid a visible gap */
  top: 56px;
  left: 0;
  right: 0;
  background: #111;
  padding: 20px;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

/* Mobile contacts inside the mobile menu: add gap between phone and TG button */
.mobile-menu .mobile-contacts {
  display: flex;
  gap: 14px; /* small separation between phone and telegram */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100vw;
  height: 70vh;
  min-height: 480px;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, #7b1f2b 0%, #b31217 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.5s ease-out;
}

.hero-text-wrapper {
  margin-bottom: 60px;
}

/* Mobile hero centering tweak: make hero fill viewport minus header and reduce text margins
   so `.hero-content` remains visually centered under the fixed header on small devices. */
@media (max-width: 600px) {
  /* approximate header height for most phones; this avoids content appearing pushed down */
  .hero {
    height: calc(100vh - 56px);
    min-height: 320px;
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-content {
    padding-top: 0; /* remove extra spacing that can push content visually down */
    justify-content: center; /* ensure internal centering */
  }

  .hero-text-wrapper { margin-bottom: 18px; }
  .hero-buttons { margin-bottom: 18px; }
}

.hero-title {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: fadeInDown 1s ease-out 0.5s both;
}

.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.7s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  margin-bottom: 60px;
}

.btn-primary {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #e52d27, #b31217);
  color: #fff;
  padding: 20px 60px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 50px;
  text-transform: uppercase;
  overflow: hidden;
  transition: all 0.3s;
  animation: fadeIn 1s ease-out 1s both;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #b31217, #e52d27);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 30px rgba(229,45,39,0.5);
}

.btn-primary:hover .btn-hover {
  opacity: 1;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.scroll-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(-5px, -5px); }
  50% { transform: rotate(45deg) translate(0, 0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* About Section */
.about {
  text-align: center;
}
.advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  list-style: none;
  padding: 0;
}
.advantages li {
  background: #292929;
  border-radius: 16px;
  padding: 24px 32px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.icon {
  font-size: 2rem;
}

/* Services Section */
.services {
  text-align: left;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.service-card {
  background: #292929;
  border-radius: 16px;
  padding: 32px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
}
.service-img {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* Price Section */
.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.price-card {
  background: #292929;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
}
.price-card.hit h3 span {
  color: #e52d27;
  font-weight: bold;
}
.price-card.promo h3 span {
  color: #ffd700;
  font-weight: bold;
}
.price-value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 12px;
}

/* Girls Section */

.girls {
  text-align: center;
}
.girls-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 32px;
}

.girl-card {
  background: #232323;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  padding: 0 0 32px 0;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.girl-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 40px rgba(229,45,39,0.18);
}
.girl-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 12px 12px 0 0;
  display: block;
  min-height: 300px;
}
.girl-info {
  margin-top: 28px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.girl-name {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.girl-btn {
  background: linear-gradient(90deg, #e52d27, #b31217);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 18px 56px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(229,45,39,0.12);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.girl-btn:hover {
  background: linear-gradient(90deg, #b31217, #e52d27);
  color: #fff;
  box-shadow: 0 4px 24px rgba(229,45,39,0.18);
}

@media (max-width: 900px) {
  .girls-gallery {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .girl-card {
    max-width: 100%;
  }
  .girl-photo {
    min-height: 260px;
  }
  .girl-name {
    font-size: 1.5rem;
  }
  .girl-btn {
    font-size: 1.1rem;
    padding: 14px 32px;
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #222;
  padding: 32px;
  border-radius: 16px;
  max-width: 350px;
  color: #fff;
  position: relative;
  text-align: left;
}
.close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 2rem;
  cursor: pointer;
}

/* FAQ Section */
.faq-list {
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  margin-bottom: 18px;
}
.faq-question {
  width: 100%;
  background: #292929;
  color: #fff;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question.active, .faq-question:hover {
  background: #e52d27;
}
.faq-answer {
  display: none;
  background: #222;
  padding: 16px;
  border-radius: 0 0 12px 12px;
  font-size: 1rem;
  margin-top: -4px;
}

/* Form Section */
.form-section {
  text-align: center;
}
.booking-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #292929;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.booking-form input,
.booking-form select {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #222;
  color: #fff;
}
.booking-form .checkbox {
  font-size: 0.95rem;
  text-align: left;
}
.booking-form .btn {
  margin-top: 12px;
}

/* Contacts Section */
.contacts-section {
  background: #111;
  padding: 80px 40px;
}

.contacts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.contacts-content {
  display: grid;
  grid-template-columns: minmax(300px, 450px) 1fr;
  gap: 60px;
  align-items: start;
  justify-content: end;
}

.contacts-map-block { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.contacts-map-block .taxi-btn { width: 100%; max-width: 360px; }

/* Desktop full-width map layout and map action buttons */
.contacts-desktop-map {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}
.contacts-heading { grid-column: 1 / 2; align-self: start; }
.map-actions { grid-column: 2 / 3; justify-self: end; align-self: start; display: flex; gap: 12px; }
.contacts-map-wrap { grid-column: 1 / -1; width: 100%; margin-top: 8px; }
.map-actions .social-btn.small,
.map-actions .taxi-btn.small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;     /* одинаковый паддинг */
  min-width: 170px;
  height: 48px;           /* фиксируем высоту */
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  margin: 0;              /* убираем разницу из-за margin-top */
  box-sizing: border-box; /* гарантируем одинаковые расчёты */
}

/* Ensure .taxi-btn.small matches the inline-flex sizing used for social-btn */
.map-actions .taxi-btn.small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* On hover, make TG text yellow while keeping the hover background effect */
.map-actions .social-btn.small:hover {
  color: #ffd700;
}



/* Modifier for centered contacts layout: single column, map centered, taxi button above */
.contacts-content.centered-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contacts-info {
  padding: 20px 0 20px 20px;
}

.contacts-info h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 20px;
}

.contact-icon {
  font-size: 24px;
  margin-right: 15px;
}

.contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: #e52d27;
}

.contact-text {
  color: #fff;
}

.contact-socials {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-btn:hover {
  background: #e52d27;
  transform: translateY(-2px);
}

.taxi-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, #e52d27, #b31217);
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
}

.taxi-btn:hover {
  background: linear-gradient(90deg, #b31217, #e52d27);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(229,45,39,0.4);
}

.contacts-map {
  width: 100%;
  height: 100%;
  min-height: 450px;
  overflow: hidden;
  justify-self: end;
}
.contacts-social a {
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  background: linear-gradient(90deg, #e52d27, #b31217);
  border-radius: 30px;
  padding: 10px 24px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(229,45,39,0.15);
}
.contacts-social a:hover {
  background: linear-gradient(90deg, #b31217, #e52d27);
  color: #ffd700;
  box-shadow: 0 4px 16px rgba(229,45,39,0.25);
}
.contacts-map {
  /* allow the map to grow and fill the contacts-map-wrap fully */
  width: 100%;
  min-width: 260px;
  /* no max-width here so the iframe can span the available area */
}
.taxi-btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #e52d27, #b31217);
  color: #fff;
  border-radius: 30px;
  padding: 12px 0;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(229,45,39,0.15);
  border: none;
  transition: background 0.3s, box-shadow 0.3s;
}
  @media (max-width: 900px) {
      .map-actions { position: static; justify-content: center; margin-bottom: 8px; }
  }

  /* When the viewport is narrow, stack map action buttons vertically to avoid layout issues */
  @media (max-width: 720px) {
    .map-actions {
      flex-direction: column;
      gap: 12px;
      width: 100%;
      align-items: stretch; /* make children take available width */
      justify-content: center;
    }
    .map-actions .social-btn.small,
    .map-actions .taxi-btn.small {
      width: 100%;
      min-width: 0;
      height: 52px;
      padding: 12px 16px;
      box-sizing: border-box;
    }
  }
.taxi-btn:hover {
  background: linear-gradient(90deg, #b31217, #e52d27);
  color: #ffd700;
  box-shadow: 0 4px 16px rgba(229,45,39,0.25);
}

/* Footer */
.footer {
  background: #181818;
  color: #fff;
  padding: 32px 20px 16px 20px;
  text-align: center;
  font-size: 1rem;
}
.footer-contacts {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.footer-policy {
  margin-bottom: 8px;
}
.footer-policy a {
  color: #e52d27;
  text-decoration: underline;
}
.footer-copy {
  opacity: 0.7;
}

/* Кнопка "Показать всех девушек" */
.show-more-btn {
  display: inline-block;
  background: linear-gradient(90deg, #e52d27, #b31217);
  color: #fff;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 1.05rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(229,45,39,0.15);
  border: none;
  transition: all 0.4s ease-in-out;
  margin-top: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.show-more-btn:hover {
  background: linear-gradient(90deg, #b31217, #e52d27);
  color: #ffd700;
  box-shadow: 0 4px 16px rgba(229,45,39,0.25);
}

/* Адаптивность */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 14px;
  }

  .phone-number {
    font-size: 16px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .contacts-content {
    gap: 40px;
  }
}

@media (max-width: 1200px) {
  .girls-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .girls-gallery.expanded {
    max-height: 1120px; /* Для трех рядов */
  }
}

@media (max-width: 900px) {
  .nav-menu, .header-contacts {
    display: none;
  }

  .burger-menu {
    display: block;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .girls-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .girls-gallery.expanded {
    max-height: 1464px; /* Для четырех рядов */
  }

  .mobile-contacts {
    text-align: center;
  }

  .header {
    background: rgba(0, 0, 0, 0.9);
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .btn-primary {
    padding: 18px 50px;
    font-size: 18px;
  }

  .contacts-content {
    grid-template-columns: 1fr;
  }

  .contacts-map {
    min-height: 350px;
  }


@media (max-width: 900px) {
  .contacts-desktop-map { display: block; }
  .map-actions { position: static; justify-content: center; margin-bottom: 8px; }
}


  .hero-subtitle {
    font-size: 20px;
  }

  .btn-primary {
    padding: 16px 40px;
    font-size: 16px;
  }

  .girls-gallery {
    grid-template-columns: 1fr;
  }
  .girls-gallery.expanded {
    max-height: 2152px; /* Для шести рядов */
  }

  .contacts-section {
    padding: 40px 0;
  }

  .contacts-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-item {
    font-size: 16px;
  }

  .social-btn {
    padding: 10px 20px;
  }

  .contacts-map {
    min-height: 300px;
  }
}
/* Mobile adjustments: hide left-side contact text and center map with taxi button on small screens */
@media (max-width: 900px) {
  .contacts-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
  }
  .contacts-content .contacts-info {
    display: none !important; /* hide left text on mobile */
  }
  .contacts-map-block { width: 100%; display:flex; flex-direction:column; align-items:center; }
  .contacts-map-block .taxi-btn { width: 100%; max-width: 360px; }
  .contacts-map { width: 100%; max-width: 720px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .logo a {
    width: 180px;
    height: 70px;
  }
  
  .header-container {
    grid-template-columns: 180px 1fr auto;
    gap: 15px;
    padding: 10px 15px;
  }
  
  /* Logo centered when mobile menu is active */
  .mobile-menu.active ~ .header-container .logo a {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
  .service-img {
    font-size: 2rem;
  }
  .girl-img img {
    height: 140px;
  }
  .booking-form {
    padding: 18px 8px;
  }
}

/* Girl Modal */
.girl-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.75);
  z-index: 99999;
  padding: 40px 20px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-in-out;
}
.girl-modal-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 10px;
}
.girl-modal-content {
  display: flex;
  gap: 24px;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
}

/* open state */
.girl-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.girl-modal .girl-modal-panel { max-height: 85vh; overflow-y: auto; }

/* Accessibility: focus outline for keyboard users */
.girl-modal [tabindex]:focus, .girl-modal button:focus, .girl-modal a:focus {
  outline: 2px solid #e52d27;
  outline-offset: 2px;
}
.girl-modal-images {
  width: 60%;
  background: #000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  align-items: center;
  justify-content: flex-start;
}
.girl-modal-imgwrap {
  width: 100%;
}
.girl-modal-imgwrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.girl-modal-info {
  width: 40%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.girl-modal-name {
  font-size: 1.6rem;
  font-weight: 700;
}

.girl-modal-book {
  display: inline-block;
  background: linear-gradient(90deg, #e52d27, #b31217);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 22px;
  transition: box-shadow 0.2s, transform 0.15s;
}

.girl-modal-book:hover {
  /* Keep text white but add a red glow outline and slight lift */
  color: #fff;
  box-shadow: 0 0 18px rgba(229,45,39,0.45), 0 8px 20px rgba(0,0,0,0.25);
  transform: translateY(-2px);
  background: linear-gradient(90deg, #e52d27, #b31217);
}
.girl-modal-personal h4 {
  margin: 8px 0 12px 0;
  font-size: 1rem;
  color: #ddd;
}
.pd-item {
  margin-bottom: 8px;
  color: #ccc;
}
.girl-modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .girl-modal {
    padding-top: 90px;
  }
  .girl-modal-content {
    flex-direction: column;
  }
  .girl-modal-images, .girl-modal-info {
    width: 100%;
  }
  .girl-modal-images {
    padding: 6px;
  }
  .girl-modal-name {
    font-size: 1.25rem;
  }
}

/* Telegram Button Glow */
.contacts .contacts-buttons a[href*="t.me"] {
  box-shadow: 0 0 10px #ff0000;
}

/* Telegram Button Styles for Girl Cards */
.girl-btn.telegram-btn {
  background: linear-gradient(135deg, #0088cc 0%, #005f8f 100%);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.girl-btn.telegram-btn:hover {
  background: linear-gradient(135deg, #0099dd 0%, #0070aa 100%);
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
  transform: translateY(-2px);
}

.girl-btn.telegram-btn::before {
  content: "📱 ";
  margin-right: 4px;
}

