* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Montserrat, sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #0d0d0d;
  overflow-x: hidden;
}
.model-card,
a {
  text-decoration: none;
  color: inherit;
}
.model-card,
.model-image {
  position: relative;
  height: 100%;
}
.filter-header h3,
.footer-column h3,
.logo h1,
.model-name h3,
.no-models-message h3 {
  font-family: "Playfair Display", serif;
}
.filter-group label,
.sort-group label {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.filter-button,
.header-contact-btn,
.load-more-btn {
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.filter-button::before,
.header-contact-btn::before,
.load-more-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.5s;
}
.contact-method:hover::before,
.filter-button:hover::before,
.header-contact-btn:hover::before,
.load-more-btn:hover::before,
.p-m:hover::before {
  left: 100%;
}
.status-available,
.status-unavailable {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.status-available {
  background: rgba(34, 197, 94, 0.95);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}
.status-available::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: 2s infinite pulse;
}
.status-unavailable {
  background: rgba(245, 158, 11, 0.95);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
.status-unavailable::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: 2s infinite pulse-yellow;
}
header {
  background-color: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
header.scrolled {
  box-shadow:
    0 0 30px rgba(255, 107, 157, 0.3),
    0 5px 20px rgba(255, 107, 157, 0.2);
  border-bottom: 2px solid rgba(255, 107, 157, 0.5);
}
header.scrolled::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0,
    #ff6b9d 20%,
    #ff8fab 50%,
    #ff6b9d 80%,
    transparent 100%
  );
  animation: 2s ease-in-out infinite alternate headerGlow;
}
@keyframes headerGlow {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-right,
.logo {
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  margin-right: 10px;
}
.logo h1 {
  margin: 0 -70px 0 0;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.logo span {
  color: #ff6b9d;
  font-weight: 400;
}
.header-contact-btn,
.nav-favorites-link {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
  font-weight: 700;
}
.nav-favorites-link {
  gap: 8px;
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-right: 15px;
}
.nav-favorites-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.social-icons a {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 22px;
}
.social-icons a:hover,
.whatsapp:hover {
  color: #25d366 !important;
  transform: translateY(-2px);
}

.header-icon-whatsapp svg{
    color: rgba(37, 211, 102, 0.8);
}
.header-icon-telegram svg{
color: rgba(0, 136, 204, 0.8);
}

.telegram:hover {
  color: #08c !important;
}
.models-section {
  padding: 60px 0 100px;
  background-color: #0d0d0d;
}
.section-header {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  position: relative;
}
.section-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 800px;
  margin: 25px auto 0;
  line-height: 1.7;
}
.section-headerh2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  border-radius: 2px;
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.model-card-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e1e1e, #181818);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: 0.4s;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.model-card-wrapper:hover {
  transform: translateY(-8px);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 107, 157, 0.1);
  border-color: rgba(255, 107, 157, 0.3);
}
.model-card {
  display: block;
  width: 100%;
  color: inherit;
}
.model-image {
  overflow: hidden;
  border-radius: 16px;
  contain: paint;
}
.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.model-card:hover .model-image img {
  transform: scale(1.08);
}
.availability-indicator {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
}
.profile-verify-small {
  position: absolute;
  bottom: 117px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
}
.profile-verify-small i {
  font-size: 11px;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
@keyframes pulse-yellow {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
.model-info-fixed {
  position: absolute;
  bottom: -15px;
  pointer-events: none;
  z-index: 8;
  width: 100%;
  contain: paint;
}
.model-info-block {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  color: #fff;
}
.model-name {
  margin-bottom: 8px;
}
.model-name h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.name-service-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-type {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  opacity: 0.8;
  white-space: normal;
  word-break: break-word;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.model-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-duration,
.price-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-amount {
  font-size: 20px;
  color: #fff;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.model-contact-icons {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.model-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.15s;
  transform: translateZ(0);
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.85);
}
.model-telegram-icon {
  background: rgba(0, 136, 204, 0.8) !important;
  color: #fff;
}
.model-whatsapp-icon {
  background: rgba(37, 211, 102, 0.8) !important;
  color: #fff;
}
.model-icon:hover {
  background-color: rgba(13, 13, 13, 0.95);
  transform: scale3d(1.05, 1.05, 1.05);
}
.filter-container {
  background: linear-gradient(145deg, #1e1e1e, #181818);
  border-radius: 16px;
  margin-bottom: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.filter-header {
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.filter-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}
.filter-header h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.filter-content {
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.filter-content.active {
  max-height: 1000px;
  padding: 30px;
  opacity: 1;
}
.filters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}
.filter-group {
  display: flex;
  flex-direction: column;
}
.filter-group label {
  margin-bottom: 15px;
  text-align: center;
}
.sorting-row {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 107, 157, 0.2);
}
.sort-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sort-group label {
  flex-shrink: 0;
}
.sort-select {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  color: #fff;
  border: 2px solid rgba(255, 107, 157, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  outline: 0;
  min-width: 200px;
  font-size: 14px;
  cursor: pointer;
}
.sort-select:focus,
.sort-select:hover {
  border-color: #ff6b9d;
  background: linear-gradient(145deg, #333, #2a2a2a);
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.2);
}
.sort-select option {
  white-space: nowrap;
  background: #1a1a1a;
  color: #fff;
  padding: 10px;
}
.range-slider {
  position: relative;
  margin: 20px 0;
  height: 8px;
}
.range-track {
  position: absolute;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  top: 0;
}
.range-fill {
  position: absolute;
  height: 8px;
  background: linear-gradient(90deg, #ff6b9d, #ff8fab);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 107, 157, 0.3);
  top: 0;
}
.range-input {
  position: absolute;
  top: 0;
  width: 100%;
  height: 8px;
  background: 0 0;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  pointer-events: none;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
  border: 3px solid #fff;
}
.range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}
.range-input::-webkit-slider-thumb:active {
  transform: scale(1.1);
}
.range-input::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  cursor: pointer;
  pointer-events: all;
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}
.range-input::-moz-range-track {
  background: 0 0;
  border: none;
}
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.filter-button {
  border: none;
  border-radius: 12px;
  padding: 15px 35px;
  font-weight: 700;
  font-size: 14px;
}
.apply-filter {
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  color: #000;
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
}
.apply-filter:hover {
  background: linear-gradient(135deg, #ff8fab, #ff6b9d);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}
.reset-filter {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  color: #fff;
  border: 2px solid rgba(255, 107, 157, 0.3);
}
.reset-filter:hover {
  background: linear-gradient(145deg, #333, #2a2a2a);
  border-color: #ff6b9d;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.filter-toggle-btn {
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  position: relative;
}
.filter-toggle-btn:hover {
  background: rgba(255, 107, 157, 0.1);
  transform: scale(1.05);
  animation: 1.2s ease-in-out heartbeat;
}
.filter-toggle-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.1),
    rgba(255, 139, 171, 0.05)
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}
.client-testimonial:hover::before,
.filter-toggle-btn:hover::before,
.p-icon:hover::before {
  opacity: 1;
}
.filter-toggle-btn.active .burger-line:first-child {
  transform: translateY(7px) rotate(45deg);
}
.filter-toggle-btn.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0.8);
}
.filter-toggle-btn.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  margin: 2px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
}
@keyframes heartbeat {
  0%,
  30%,
  60% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.15);
  }
  45% {
    transform: scale(1.1);
  }
}
.location-subtitle {
  letter-spacing: 2px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
  text-transform: uppercase;
}
.header-contact-btn {
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 160px;
  justify-content: center;
  z-index: 1;
}
.header-contact-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  z-index: -1;
  border-radius: inherit;
  transition: opacity 0.3s;
}
.header-contact-btn:hover::after {
  opacity: 1;
}
.header-contact-btn i {
  font-size: 32px;
  flex-shrink: 0;
}
.btn-text {
  display: inline;
  font-size: inherit;
  white-space: nowrap;
}
.header-contact-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.header-instagram-btn,
.header-telegram-btn,
.header-whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.header-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #2be473, #25d366);
}
.header-telegram-btn {
  background: linear-gradient(135deg, #08c, #005885);
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}
.header-telegram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
  background: linear-gradient(135deg, #1a9edf, #08c);
}
.header-instagram-btn {
  background: linear-gradient(135deg, #e4405f, #833ab4, #f77737);
  box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
  animation-delay: 3s;
}
.header-instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
  background: linear-gradient(135deg, #f77737, #e4405f, #833ab4);
}
.contact-section-index {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0, #0d0d0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-header {
  margin-bottom: 50px;
}
.contact-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  display: inline-block;
  margin-top: 26px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.contact-headerh2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  border-radius: 2px;
}
.contact-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 25px;
  line-height: 1.6;
}
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-methods {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 20px 0;
  flex-wrap: wrap;
}
.contact-method,
.p-m {
  background: linear-gradient(145deg, #1e1e1e, #181818);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
}
.contact-method {
  flex: 0 1 auto;
  min-width: 160px;
  justify-content: center;
}
.contact-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.02),
    transparent
  );
  transition: left 0.5s;
}
.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 157, 0.2);
}
.contact-method:hover::before {
  left: 100%;
}
.contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.contact-method.whatsapp .contact-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.contact-method.telegram .contact-icon {
  background: linear-gradient(135deg, #08c, #006bb3);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}
.contact-method:hover .contact-icon {
  transform: scale(1.1);
}
.contact-info {
  flex: 1;
  text-align: left;
}
.contact-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-family: Montserrat, sans-serif;
}
.p-m {
  margin: 43px 0;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.p-m::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 157, 0.03),
    transparent
  );
  transition: left 0.8s;
}
.p-m:hover::before {
  left: 100%;
}
.p-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.p-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(145deg, #242424, #1a1a1a);
  border: 2px solid rgba(255, 107, 157, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: 0.6s forwards fadeInUp;
  position: relative;
  overflow: hidden;
}
.p-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.1),
    rgba(255, 139, 171, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.p-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: brightness(0.9);
  z-index: 2;
  position: relative;
}
.p-icon:nth-child(2) {
  animation-delay: 0.1s;
}
.p-icon:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-m:hover .p-icon {
  animation: 2s ease-in-out infinite gentlePulse;
}
@keyframes gentlePulse {
  0%,
  100% {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow:
      0 5px 20px rgba(0, 0, 0, 0.3),
      0 0 15px rgba(255, 107, 157, 0.1);
  }
}
.p-icon:hover::before {
  opacity: 1;
}
.load-more-container {
  text-align: center;
  margin-top: 60px;
}
.load-more-btn {
  color: #fff;
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  border: none;
  padding: 18px 45px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.3);
  margin-top: 15px;
}
.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 107, 157, 0.4);
  background: linear-gradient(135deg, #ff8fab, #ff6b9d);
}
.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.load-more-count {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.9;
}
.loading-indicator {
  text-align: center;
  padding: 40px 0;
  margin: 40px 0;
}
.spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 107, 157, 0.2);
  border-radius: 50%;
  border-top-color: #ff6b9d;
  animation: 1s ease-in-out infinite spin;
  margin: 0 auto;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.pagination-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  padding: 30px 0;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(145deg, #1e1e1e, #181818);
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 107, 157, 0.2);
}
.pagination-btn,
.pagination-dots {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}
.pagination-btn:hover,
.pagination-current {
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  border-color: transparent;
  color: #fff;
}
.pagination-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}
.pagination-current {
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  cursor: default;
}
.pagination-current:hover {
  transform: none;
}
.pagination-next,
.pagination-prev {
  width: 44px;
  background: rgba(255, 255, 255, 0.08);
}
.pagination-dots {
  color: rgba(255, 255, 255, 0.4);
}
.pagination-info {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-info {
  margin-top: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.page-info span {
  background: rgba(255, 107, 157, 0.2);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 107, 157, 0.3);
}
.pagination-prev::before {
  content: "‹";
  font-size: 18px;
}
.pagination-next::after {
  content: "›";
  font-size: 18px;
}
.no-models-message {
  background: linear-gradient(145deg, #1e1e1e, #181818);
  text-align: center;
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 157, 0.2);
}
.no-models-message h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.no-models-message p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}
footer {
  background: linear-gradient(145deg, #151515, #0d0d0d);
  padding: 80px 0 40px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-column h3 {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}
.footer-columnh3:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  border-radius: 2px;
}
.footer-column p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
}
.footer-links a:hover {
  color: #ff6b9d;
  padding-left: 8px;
}
.footer-social {
  display: flex;
  margin-top: 25px;
  gap: 15px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, #1a1a1a, #151515);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 18px;
  border-radius: 8px;
}
.footer-social a:hover {
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}
.copyright {
  text-align: center;
  padding-top: 50px;
  margin-top: 50px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}
.client-testimonials {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 80px 20px 100px;
  background-color: #0d0d0d;
  color: #fff;
  position: relative;
}
.client-testimonials::after,
.client-testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
}
.client-testimonials::before {
  top: 0;
}
.client-testimonials::after {
  bottom: 0;
}
.review-form-container {
  background: linear-gradient(145deg, #1e1e1e, #181818);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 107, 157, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}
.review-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff6b9d,
    #ff8fab,
    #ff6b9d,
    transparent
  );
}
.review-form-container h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: "Playfair Display", serif;
}
.review-form-containerh2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  border-radius: 2px;
}
.review-form-container p {
  text-align: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 25px auto 40px;
  line-height: 1.7;
}
.review-form .form-group {
  margin-bottom: 30px;
}
.review-form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: Montserrat, sans-serif;
}
.review-form input[type="text"],
.review-form textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 157, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  resize: none;
  backdrop-filter: blur(10px);
}
.review-form input[type="text"]:focus,
.review-form textarea:focus {
  outline: 0;
  border-color: #ff6b9d;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
  transform: translateY(-2px);
}
.review-form input[type="text"]::placeholder,
.review-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 10px;
  font-size: 35px;
  margin: 20px 0;
}
.star-rating input {
  display: none;
}
.star-rating label {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #ff6b9d;
  transform: scale(1.15);
  text-shadow: 0 0 20px rgba(255, 107, 157, 0.8);
}
.error-message,
.success-message {
  padding: 20px;
  margin-bottom: 30px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  text-align: center;
  border-radius: 12px;
}
.success-message {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}
.error-message {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
#rating-error {
  color: #ef4444 !important;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.client-testimonial {
  background: linear-gradient(145deg, #1e1e1e, #181818);
  padding: 30px;
  border-radius: 16px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}
.client-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.client-testimonial:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 107, 157, 0.1);
  border-color: rgba(255, 107, 157, 0.3);
}
.client-testimonial:hover::before {
  opacity: 1;
}
.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}
.reviewer-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  color: #ff6b9d;
}
.review-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-style: italic;
}
.rating {
  margin-bottom: 20px;
  text-align: center;
}
.star {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  margin: 0 2px;
}
.star.filled {
  color: #ff6b9d;
  text-shadow: 0 0 8px rgba(255, 107, 157, 0.4);
}
.review-text {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
  font-size: 15px;
}
.crypto-popup-overlay-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.crypto-popup-container-main {
  background: #1a1a1a;
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 107, 157, 0.3);
  transform: scale(0.8) translateY(50px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  contain: layout style;
}
.crypto-popup-container-main::-webkit-scrollbar {
  display: none;
}
.crypto-popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: rgba(255, 107, 157, 0.2);
  border: 1px solid rgba(255, 107, 157, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.crypto-popup-image-section {
  text-align: center;
  padding: 0;
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.crypto-popup-main-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: none;
  display: block;
}
.crypto-popup-header-section {
  text-align: center;
  padding: 20px 20px 15px;
  background: 0 0;
  position: relative;
}
.crypto-fire-decoration-icon,
.crypto-fire-icon-anim {
  animation: 1.5s ease-in-out infinite alternate crypto-flame-animation;
  font-size: 24px;
  margin: 0 5px;
  color: #ff6b9d;
}
@keyframes crypto-flame-animation {
  0% {
    transform: scale(1) rotate(-2deg);
    color: #fff;
  }
  100% {
    transform: scale(1.1) rotate(2deg);
    color: #ffebf0;
  }
}
.crypto-popup-title-main {
  font-size: 28px;
  font-weight: 700;
  color: #ff6b9d;
  margin: 10px 0;
  text-shadow: none;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}
.crypto-popup-subtitle-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  line-height: 1.4;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.crypto-popup-content-section {
  padding: 0 30px 20px;
  text-align: center;
}
.crypto-popup-text-paragraph {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  margin-top: 0;
  font-family: Montserrat, sans-serif;
}
.crypto-popup-cta-text {
  margin-top: 25px;
  font-size: 18px;
  color: #ff6b9d;
  font-weight: 700;
  text-shadow: none;
}
.crypto-offer-highlight-text {
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 18px;
  text-shadow: none;
}
.crypto-contact-buttons-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 0 30px 30px;
}
.crypto-contact-btn {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  line-height: 1;
  font-family: Montserrat, sans-serif;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.crypto-whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.crypto-telegram-btn {
  background: linear-gradient(135deg, #08c, #005885);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}
.crypto-contact-btn i {
  font-size: 20px;
}
.crypto-discount-trigger-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b9d, #ff8fab);
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.4);
  z-index: 1000;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  color: #fff;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
.crypto-fire-icon-anim {
  font-size: 18px;
}
.districts-compact-filter {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 12px;
  margin-bottom: 25px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 107, 157, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.districts-compact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}
.districts-title {
  font-size: 16px;
  font-weight: 700;
  color: #ff6b9d;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.districts-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.districts-compact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 100%;
}
.district-compact-btn {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border: 1px solid rgba(255, 107, 157, 0.3);
  border-radius: 8px;
  color: #fff;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
}
.district-compact-btn::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.3s ease;
}
.district-compact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.district-compact-btn.active {
  background-color: #007bff;
  color: #fff;
}
.district-more-compact-btn {
  background: linear-gradient(145deg, #333, #222);
  border: 1px solid rgba(255, 107, 157, 0.4);
  border-radius: 8px;
  color: #ff6b9d;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  position: relative;
}
.district-more-compact-btn:hover {
  background: linear-gradient(145deg, #ff6b9d, #ff8fab);
  color: #000;
  border-color: #ff6b9d;
  transform: translateY(-1px);
}
.district-more-compact-btn.expanded {
  background: #ff6b9d;
  color: #000;
  border-color: #ff6b9d;
}
.more-icon {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
}
.district-more-compact-btn.expanded .more-icon {
  transform: rotate(45deg);
}
.more-compact-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hidden-compact {
  display: none !important;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: all 0.2s ease;
}
.district-separator {
  grid-column: 1/-1;
  margin: 30px 0;
  padding: 0 20px;
}
.district-separator-content {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.district-separator-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #ddd 20%,
    #ddd 80%,
    transparent
  );
}
.district-separator-text {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  padding: 0 15px;
}
.district-name-highlight {
  color: #007bff;
  font-weight: 600;
  font-size: 15px;
}
.other-models-text {
  color: #888;
  font-size: 13px;
}
.total-models-count {
  color: #999;
  font-size: 12px;
  font-weight: 400;
}
.district-count {
  font-size: 0.8em;
  opacity: 0.7;
  margin-left: 2px;
}
.low-performance .model-card-wrapper {
  background: #1a1a1a !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
}
.low-performance .district-compact-btn,
.low-performance .district-compact-btn::before,
.low-performance .district-more-compact-btn {
  transition: none !important;
  transform: none !important;
}
.desktop-name {
  display: inline;
}
.mobile-name {
  display: none;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.mobile-banner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.banner-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.header-ourchannels-btn {
  background-color: #ff69b4;
  color: #fff;
  border-radius: 25px;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 20px;
}
.header-ourchannels-btn:hover {
  background-color: #ff4da6;
  transform: translateY(-2px);
}
.channels-section {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}
.circle-btn {
  background-color: #ff69b4;
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
}
.circle-btn:hover {
  background-color: #ff4da6;
  transform: scale(1.1);
}
.contact-method {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 1024px) {
  .model-name h3,
  .service-type {
    white-space: nowrap;
    font-weight: 600;
  }
  .service-type {
    font-size: 11px;
    max-width: none;
  }
}
@media (max-width: 1200px) {
  .models-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .model-card-wrapper {
    height: 440px;
  }
  .section-header h2 {
    font-size: 38px;
  }
  .header-contact-btn {
    min-width: 150px;
    padding: 11px 18px;
    font-size: 14px;
  }
  .header-contact-btn i {
    font-size: 32px;
  }
  .filters-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .crypto-popup-container-main {
    max-width: 90%;
  }
  .crypto-popup-title-main {
    font-size: 26px;
    line-height: 1.3;
  }
  .crypto-popup-subtitle-text {
    font-size: 15px;
  }
  .crypto-popup-main-image {
    height: 180px;
  }
  .crypto-popup-text-paragraph {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .crypto-popup-cta-text {
    font-size: 17px;
    margin-top: 20px;
  }
  .reviews-container {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
  }
  .review-form-container {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .model-card-wrapper {
    height: 400px;
  }
  .favorites-text {
    display: none;
  }
  .nav-favorites-link {
    padding: 10px 12px;
  }
  .header-contact-buttons {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .section-header h2 {
    font-size: 32px;
  }
  .models-section {
    padding: 30px 0;
  }
  .models-grid {
    gap: 14px;
  }
  .model-card-wrapper {
    height: 360px;
  }
  .model-info-fixed {
    min-height: 100px;
  }
  .model-name h3 {
    font-size: 22px;
  }
  .price-amount {
    font-size: 20px;
  }
  .filter-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 0;
    opacity: 0;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .filter-content.active {
    max-height: 1000px;
    padding: 30px;
    opacity: 1;
  }
  .filters-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .sorting-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .sort-select {
    min-width: 100%;
  }
  .filter-buttons {
    gap: 15px;
  }
  .filter-toggle-btn {
    width: 36px;
    height: 36px;
  }
  .filter-toggle-btn.active .burger-line:first-child {
    transform: translateY(5.5px) rotate(45deg);
  }
  .filter-toggle-btn.active .burger-line:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }
  .burger-line {
    width: 20px;
    height: 2px;
    margin: 1.5px 0;
  }
  .section-header {
    margin-bottom: 50px;
  }
  .header-contact-btn i,
  .section-header h2 {
    font-size: 32px;
  }
  .location-subtitle {
    font-size: 16px;
  }
  .header-contact-btn {
    min-width: 140px;
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 10px;
  }
  .btn-text {
    font-size: 12px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pagination {
    padding: 12px 15px;
    gap: 6px;
  }
  .pagination-btn {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .pagination-info {
    font-size: 13px;
    padding: 8px 15px;
  }
  .contact-section-index {
    padding: 60px 0;
  }
  .contact-content {
    max-width: 100%;
  }
  .contact-header h2 {
    font-size: 28px;
  }
  .contact-header p {
    font-size: 16px;
  }
  .contact-methods {
    gap: 25px;
  }
  .contact-method {
    padding: 2px 15px;
    gap: 12px;
  }
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
  .contact-info {
    text-align: center;
  }
  .contact-info h3 {
    font-size: 18px;
  }
  .p-m {
    margin: 30px 0;
    padding: 25px;
  }
  .p-icons {
    gap: 30px;
  }
  .p-icon {
    width: 80px;
    height: 80px;
  }
  .p-icon img {
    width: 45px;
    height: 45px;
  }
  .crypto-discount-trigger-btn {
    bottom: 20px;
    right: 15px;
    padding: 11px 18px;
    font-size: 15px;
  }
  .crypto-popup-container-main {
    max-width: 95%;
    width: 95%;
  }
  .crypto-popup-close-btn {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .crypto-popup-header-section {
    padding: 15px 20px 10px;
  }
  .crypto-popup-title-main {
    font-size: 24px;
    margin: 8px 0;
  }
  .crypto-popup-subtitle-text {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .crypto-popup-main-image {
    height: 160px;
  }
  .crypto-popup-content-section {
    padding: 0 20px 15px;
  }
  .crypto-popup-text-paragraph {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .crypto-popup-cta-text {
    font-size: 16px;
    margin-top: 15px;
  }
  .crypto-contact-buttons-container {
    flex-direction: column;
    gap: 12px;
    padding: 0 20px 20px;
  }
  .crypto-contact-btn {
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 10px;
  }
  .crypto-contact-btn i {
    font-size: 18px;
  }
  .crypto-fire-decoration-icon {
    font-size: 20px;
    margin: 0 3px;
  }
  .districts-compact-filter {
    padding: 15px;
    margin-bottom: 20px;
  }
  .districts-compact-header {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-bottom: 12px;
  }
  .districts-title {
    font-size: 15px;
  }
  .districts-count {
    font-size: 13px;
  }
  .districts-compact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .district-compact-btn,
  .district-more-compact-btn {
    padding: 8px 6px;
    font-size: 11px;
    min-height: 36px;
    border-radius: 6px;
  }
  .more-compact-text {
    font-size: 9px;
  }
  .district-separator {
    margin: 20px 0;
    padding: 0 10px;
  }
  .district-separator-content {
    gap: 15px;
  }
  .district-separator-text {
    font-size: 13px;
    white-space: normal;
    text-align: center;
  }
  .district-name-highlight {
    font-size: 14px;
  }
  .other-models-text {
    font-size: 12px;
  }
  .client-testimonials {
    padding: 60px 15px;
  }
  .review-form-container {
    padding: 25px 20px;
    margin-bottom: 50px;
  }
  .review-form-container h2 {
    font-size: 32px;
  }
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .client-testimonial {
    padding: 25px;
  }
  .star-rating {
    font-size: 30px;
    gap: 8px;
  }
  .reviewer-name {
    font-size: 16px;
  }
  .review-date {
    font-size: 12px;
  }
  .model-contact-icons {
    top: 12px;
    right: 2px;
    gap: 6px;
  }
  .model-icon {
    width: 28px;
    height: 28px;
  }
  .model-icon svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 576px) {
  .section-header h2 {
    font-size: 28px;
  }
  .models-grid {
    gap: 12px;
  }
  .model-card-wrapper {
    height: 340px;
  }
  .model-info-fixed {
    min-height: 84px;
  }
  .model-name h3 {
    font-size: 18px;
  }
  .price-amount {
    font-size: 16px;
  }
  .availability-indicator {
    top: 10px;
    left: 10px;
  }
  .status-available,
  .status-unavailable {
    font-size: 7px;
    padding: 5px;
  }
  .profile-verify-small {
    padding: 6px 8px;
    font-size: 9px;
    bottom: 73px;
    right: 2px;
  }
  .pagination {
    padding: 10px 12px;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagination-btn {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  .filter-header {
    padding: 5px 20px;
  }
  .filter-header h3 {
    font-size: 18px;
  }
  .filter-content {
    padding: 0 0;
  }
  .filter-content.active {
    padding: 25px 20px;
  }
  .filter-group label {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .filter-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .filter-button {
    width: 100%;
    padding: 12px 25px;
  }
  .range-slider {
    margin: 15px 0;
  }
  .range-input::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
  }
  .range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
  }
  .location-subtitle {
    font-size: 15px;
  }
  .header-contact-buttons {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-contact-btn {
    min-width: 130px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 12px;
  }
  .header-contact-btn i {
    font-size: 32px;
  }
  .btn-text {
    font-size: 11px;
  }
  .header-instagram-btn {
    order: 3;
    width: calc(100% - 24px);
    min-width: auto;
    flex: 1 1 100%;
  }
  .header-whatsapp-btn {
    order: 1;
    flex: 1;
  }
  .header-telegram-btn {
    order: 2;
    flex: 1;
  }
  .sort-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: center;
  }
  .sort-group label {
    white-space: normal;
  }
  .sort-select {
    min-width: 100%;
    text-align: center;
  }
  .crypto-discount-trigger-btn {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 14px;
    gap: 6px;
  }
  .crypto-contact-btn i,
  .crypto-fire-icon-anim {
    font-size: 16px;
  }
  .crypto-popup-container-main {
    max-width: 98%;
    width: 98%;
    max-height: 95vh;
  }
  .crypto-popup-close-btn {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .crypto-popup-header-section {
    padding: 12px 15px 8px;
  }
  .crypto-popup-title-main {
    font-size: 20px;
    margin: 6px 0;
    line-height: 1.2;
  }
  .crypto-popup-subtitle-text {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .crypto-popup-main-image {
    height: 140px;
  }
  .crypto-popup-content-section {
    padding: 0 15px 12px;
  }
  .crypto-popup-text-paragraph {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .crypto-popup-cta-text {
    font-size: 15px;
    margin-top: 12px;
  }
  .crypto-offer-highlight-text {
    font-size: 14px;
  }
  .crypto-contact-buttons-container {
    gap: 10px;
    padding: 0 15px 15px;
  }
  .crypto-contact-btn {
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 8px;
  }
  .crypto-fire-decoration-icon {
    font-size: 18px;
    margin: 0 2px;
  }
  .districts-compact-filter {
    padding: 12px;
  }
  .districts-compact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  .district-compact-btn,
  .district-more-compact-btn {
    padding: 6px 4px;
    font-size: 10px;
    min-height: 32px;
    border-radius: 5px;
  }
  .districts-title {
    font-size: 14px;
  }
  .districts-count {
    font-size: 12px;
  }
  .more-icon {
    font-size: 12px;
  }
  .more-compact-text {
    font-size: 8px;
  }
  .filter-header {
    padding: 15px 20px;
  }
  .filter-header h3 {
    font-size: 18px;
  }
  .filter-content {
    padding: 0 20px;
  }
  .filter-group label {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .range-slider {
    margin: 15px 0;
  }
  .range-input::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
  }
  .range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .location-subtitle {
    font-size: 15px;
  }
  .header-contact-buttons {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-contact-btn {
    min-width: 130px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 12px;
  }
  .header-contact-btn i {
    font-size: 32px;
  }
  .btn-text {
    font-size: 11px;
  }
  .header-instagram-btn {
    order: 3;
    width: calc(100% - 24px);
    min-width: auto;
    flex: 1 1 100%;
  }
  .header-whatsapp-btn {
    order: 1;
    flex: 1;
  }
  .header-telegram-btn {
    order: 2;
    flex: 1;
  }
  .review-form-container {
    padding: 20px 15px;
    border-radius: 12px;
  }
  .review-form-container p {
    font-size: 16px;
  }
  .star-rating {
    gap: 6px;
  }
  .review-form input[type="text"],
  .review-form textarea {
    padding: 12px 15px;
    font-size: 14px;
  }
  .client-testimonial {
    padding: 20px;
    border-radius: 12px;
  }
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .review-date {
    margin-top: 5px;
  }
  .contact-section-index {
    padding: 50px 0;
  }
  .contact-header h2 {
    font-size: 24px;
  }
  .contact-method {
    padding: 2px 12px;
    gap: 10px;
  }
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  .contact-info h3 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .header-contact-buttons,
  .models-grid {
    gap: 5px;
  }
  .model-card-wrapper {
    height: 320px;
  }
  .model-contact-icons {
    top: 12px;
    right: 2px;
    gap: 6px;
  }
  .model-icon {
    width: 28px;
    height: 28px;
  }
  .model-icon svg {
    width: 16px;
    height: 16px;
  }
  .contact-info h3,
  .model-name h3 {
    font-size: 16px;
  }
  .price-amount {
    font-size: 14px;
  }
  .model-info-fixed {
    min-height: 84px;
  }
  .filter-toggle-btn {
    width: 32px;
    height: 32px;
  }
  .burger-line {
    width: 18px;
    height: 2px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .header-contact-btn {
    min-width: 120px;
    padding: 8px 12px;
    font-size: 11px;
  }
  .header-contact-btn i {
    font-size: 32px;
  }
  .btn-text {
    font-size: 10px;
  }
  .header-instagram-btn {
    width: calc(100% - 20px);
    min-width: auto;
  }
  .review-form-container h2,
  .star-rating {
    font-size: 28px;
  }
  .client-testimonials {
    padding: 40px 12px 60px;
  }
  .crypto-discount-trigger-btn {
    bottom: 12px;
    right: 12px;
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 20px;
  }
  .crypto-fire-icon-anim {
    font-size: 14px;
  }
  .crypto-popup-container-main {
    max-width: 96%;
    width: 96%;
    border-radius: 15px;
  }
  .crypto-popup-image-section {
    border-radius: 15px 15px 0 0;
  }
  .crypto-popup-main-image {
    height: 120px;
  }
  .crypto-popup-title-main {
    font-size: 18px;
    margin: 5px 0;
  }
  .crypto-popup-subtitle-text {
    font-size: 12px;
  }
  .crypto-popup-text-paragraph {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .crypto-popup-cta-text {
    font-size: 14px;
    margin-top: 10px;
  }
  .crypto-offer-highlight-text {
    font-size: 13px;
  }
  .crypto-contact-btn {
    padding: 11px 16px;
    font-size: 13px;
    border-radius: 8px;
  }
  .crypto-contact-btn i {
    font-size: 15px;
  }
  .districts-compact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  .district-compact-btn,
  .district-more-compact-btn {
    padding: 5px 3px;
    font-size: 9px;
    min-height: 30px;
  }
  .district-separator {
    margin: 15px 0;
  }
  .district-separator-content {
    flex-direction: column;
    gap: 10px;
  }
  .district-separator-line {
    width: 100%;
    height: 1px;
  }
  .district-separator-text {
    padding: 0;
  }
  .contact-section-index {
    padding: 50px 0;
  }
  .contact-header h2 {
    font-size: 24px;
  }
  .contact-method {
    padding: 2px 12px;
    gap: 10px;
  }
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .header-contact-btn {
    min-width: 120px;
    padding: 8px 12px;
    font-size: 11px;
  }
  .header-contact-btn i {
    font-size: 32px;
  }
  .btn-text {
    font-size: 10px;
  }
  .p-m {
    margin: 25px 0;
    padding: 20px;
  }
  .p-icons {
    gap: 25px;
  }
  .p-icon {
    width: 70px;
    height: 70px;
  }
  .p-icon img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 400px) {
  .sort-group label {
    font-size: 14px;
  }
  .sort-select {
    font-size: 13px;
    padding: 10px 12px;
  }
  .districts-compact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  .district-compact-btn,
  .district-more-compact-btn {
    padding: 5px 3px;
    font-size: 9px;
    min-height: 30px;
  }
}
@media (max-width: 360px) {
  .header-contact-btn {
    min-width: 110px;
    padding: 7px 10px;
    font-size: 10px;
  }
  .header-contact-btn i {
    font-size: 32px;
  }
  .btn-text {
    font-size: 9px;
  }
  .crypto-discount-trigger-btn {
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }
  .crypto-popup-main-image {
    height: 100px;
  }
  .crypto-popup-title-main {
    font-size: 16px;
  }
  .crypto-popup-text-paragraph {
    font-size: 11px;
  }
  .crypto-popup-cta-text {
    font-size: 13px;
  }
  .crypto-contact-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
}
@media screen and (max-width: 762px) {
  .model-info-block {
    padding: 10px;
  }
}
@media (max-width: 400px) {
  .logo h1 {
    margin: 0;
  }
}
