body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.header-logo {
  flex: 0 0 auto;
}
.city-right-block {
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}
#city-selector {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1000;
}
/* #city-selector:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px); */
}
#current-city-name {
  font-weight: 600;
  color: #2d3748;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}
#current-city-name::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}
#change-city {
  background: linear-gradient(135deg, #6ca4ff 0%, #22d5ea 100%);
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 0.8rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  white-space: nowrap;
  margin-left: auto;
}
#change-city:hover {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}
#change-city:active {
  transform: translateY(0);
}
#city-search {
  position: relative;
  flex: 1 1 auto;
  min-width: 120px;
  margin-left: auto;
  z-index: 1001;
}
#city-search::after {
  pointer-events: none;
  transition: all 0.2s ease;
}
#city-input {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 10px 15px 10px 40px;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
#city-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  padding-left: 45px;
}
#city-search::before {
  content: '⚲';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.6;
  transition: all 0.3s ease;
}

#city-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 1001;
  max-height: min(300px, 60vh);
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  border-top: none;
  transform-origin: top center;
  animation: slideDown 0.25s ease-out;
}
@keyframes slideDown {
  from {
  opacity: 0;
  transform: scaleY(0.9) translateY(-10px);
}
to {
  opacity: 1;
  transform: scaleY(1) translateY(0);
}
}
#city-list li {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#city-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, #3b82f6, #6366f1);
  transition: height 0.3s ease;
}
#city-list li:hover {
  background: #f8fafc;
}
#city-list li:hover::before {
  height: 100%;
}
#city-list li:active {
  transform: scale(0.98);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 150px));
  justify-content: center;
  gap: 15px;
  padding: 15px;
  max-width: 1900px;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-left: 20px;
  margin-right: 20px;
}
.category-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.category-tile:hover {
  background: #f9f9f9;
  transform: translateY(-2px);
}
.category-tile img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
#content-container {
  padding: 5px;
  margin-bottom: 50px;
}
.back-button {
  display: inline-block;
  margin: 15px 0;
  padding: 8px 15px;
  background: #f0f0f0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background 0.2s;
}
.back-button:hover {
  background: #e0e0e0;
}
.subcategories-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 150px));
  justify-content: center;
  gap: 15px;
  padding: 0px;
  max-width: 1900px;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-left: 20px;
  margin-right: 20px;
}
.subcategory-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.subcategory-item:hover {
  background: #f9f9f9;
  transform: translateY(-2px);
}
.subcategory-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.services-header {
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
}
.services-list {
  width: 95%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 15px 20px;
  box-shadow: 0 5px 10px 2px rgba(71, 71, 71, 0.2);
  height: 100px;
  text-decoration: none;
}
.service-card:nth-child(2) {
  transform: scale(0.9);
  margin-bottom: 5px;
}
.service-card:nth-child(3) {
  transform: scale(0.8);
}
.service-card:nth-child(1)::after {
  content: "01";
  color: #f7f7f7;
  font-weight: 900;
  margin-left: auto;
  font-size: 80px;
}
.service-card:nth-child(2)::after {
  content: "02";
  color: #f7f7f7;
  font-weight: 900;
  margin-left: auto;
  font-size: 80px;
}
.service-card:nth-child(3)::after {
  content: "03";
  color: #f7f7f7;
  font-weight: 900;
  margin-left: auto;
  font-size: 80px;
}
@media (max-width: 768px) {
  .service-card:nth-child(1)::after {
  content: none;
  display: none;
}
.service-card:nth-child(2)::after {
  content: none;
  display: none;
}
.service-card:nth-child(3)::after {
  content: none;
  display: none;
}
}
.service-image {
  background-color: #f5f5f5;
  border-radius: 0px 30px 0 30px;
  padding: 10px 15px;
  text-align: center;
}
.service-image img {
  max-width: 100px;
  max-height: 100px;
  object-fit: cover;
}
.no-logo {
  color: #999;
  font-size: 14px;
}
.service-info {
  padding: 15px;
}
.service-info h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
}
.service-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}
.organization-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
.org-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.org-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 30px;
}
.org-header h1 {
  margin: 0;
  color: #333;
}
.org-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.org-section h2 {
  color: #444;
  margin-bottom: 15px;
}
.org-section p, .org-section li {
  line-height: 1.6;
  color: #555;
}
.error {
  color: #d32f2f;
  text-align: center;
  padding: 20px;
  grid-column: 1 / -1;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  padding: 20px;
}
.service-logo {
  height: 180px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.service-info p {
  margin: 0 0 15px 0;
  color: #666;
  line-height: 1.5;
}
.service-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rating {
  color: #ffc107;
  font-size: 1.1em;
}
.reviews {
  color: #999;
  font-size: 0.9em;
}
.no-services {
  text-align: center;
  padding: 40px;
  color: #666;
}
.header-logo {
  margin-right: auto;
}
.logo-img {
  height: 35px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.05);
}
.bgvideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -9999;
}
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  border-radius: 16px;
  margin: 30px auto;
  max-width: 1900px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 999;
  margin-left: 90px;
  margin-right: 90px;
}
.search-wrapper {
  margin: 15px 0;
  width: 100%;
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.bbik-title {
  font-size: 3rem;
  font-weight: 700;
  color: #464647;
  margin-bottom: 8px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
.search-title {
  font-size: 2rem;
  font-weight: 500;
  color: #464647;
  margin-bottom: 8px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
.search-subtitle {
  font-size: 1rem;
  color: #636363;
  margin-bottom: 30px;
  font-weight: 400;
}
.search-form {
  position: relative;
  width: 100%;
}
.search-input-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.search-input {
  width: 100%;
  padding: 11px 150px 11px 50px;
  font-size: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  background: #ffffff;
  color: #2d3748;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
  outline: none;
  box-sizing: border-box;
}
.search-input:focus {
  border-color: #4299e1;
  box-shadow: 0 4px 15px rgba(66, 153, 225, 0.2);
}
.search-input::placeholder {
  color: #a0aec0;
  opacity: 1;
}
.search-clear {
  position: absolute;
  right: 140px;
  background: none;
  border: none;
  color: #cbd5e0;
  cursor: pointer;
  padding: 5px;
  transition: all 0.2s;
  opacity: 0;
  transform: scale(0.8);
  padding: 12px 0px 5px 5px;
}
.search-input:not(:placeholder-shown) + .search-clear {
  opacity: 1;
  transform: scale(1);
}
.search-clear:hover {
  color: #718096;
}
.search-button {
  position: absolute;
  right: 0;
  height: 100%;
  padding: 0 25px;
  background: linear-gradient(135deg, #4299e1 0%, #22d5ea 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(66, 153, 225, 0.3);
  font-size: 20px;
}
.search-button:hover {
  background: linear-gradient(135deg, #3182ce 0%, #2b6cb0 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(66, 153, 225, 0.4);
}
.search-button:active {
  transform: translateY(0);
}
.search-results {
  position: absolute;
  width: 90%;
  max-width: 650px;
  margin-top: 10px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1002;
  display: none;
  animation: fadeIn 0.3s ease-out;
  left: 50%;
  transform: translateX(-50%);
}
.search-result-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  transition: all 0.25s ease;
  cursor: pointer;
  background: #ffffff;
  border-radius: 20px;
  top: 10px;
  margin-bottom: 7px;
}
.search-result-item:nth-child(2) {
  transform: scale(0.9);
  margin-bottom: 1px;
}
.search-result-item:nth-child(3) {
  transform: scale(0.8);
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  background: #f8fafc;
}
.search-result-item img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}
.search-result-content {
  flex-grow: 1;
  min-width: 0;
}
.search-result-item h5 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
.search-result-category {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 4px;
  font-weight: 400;
  display: inline-block;
  background: #e8f0fe;
  padding: 3px 8px;
  border-radius: 4px;
}
.no-results {
  padding: 20px;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
}
.search-result-item {
  position: relative;
  overflow: hidden;
}
.search-result-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, #3b82f6, #6366f1);
  transition: height 0.3s ease;
}
.search-result-item:hover::after {
  height: 100%;
}
.search-result-item .logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.search-result-item .logo-placeholder svg {
  width: 20px;
  height: 20px;
  color: #94a3b8;
}
.city-custom-icon {
  width: 25px;
  height: 25px;
  margin-right: 8px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}
#current-city-display:hover .city-custom-icon {
  transform: scale(1.1);
}
#current-city-display {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f7f7f7;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.site-footer {
  background: #fff;
  color: #333;
  padding: 50px 0 20px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.03);
  border-top: 1px solid #f0f0f0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  flex-wrap: wrap;
  gap: 300px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
}
.footer-logo {
  width: 120px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.footer-logo:hover {
  transform: scale(1.05);
}
.footer-slogan {
  color: #474747;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer-apps {
  display: flex;
  gap: 20px;
}
.footer-apps img {
  height: 80px;
  border-radius: 7px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  /* Вариант 1: если картинка одна — центр через margin */
  .footer-apps img {
    display: block;
    margin: 0 auto;
    /* при желании чуть поменьше на мобилке */
    /* height: 64px; */
  }
}
.footer-apps img:hover {
  transform: translateY(-2px);
}
.footer-social {
  min-width: 200px;
}

.social-links {
  display: flex;
  gap: 16px; /* расстояние между иконками */
  text-decoration: none;
  padding-top: 20px;
}

.social-icon {
  color: #aaa;
  font-size: 38px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Telegram — фирменный синий */
.social-icon.telegram i {
  color: #0088cc;
}

.social-icon.telegram:hover i {
  color: #006ca3;
  transform: translateY(-3px);
}

/* ВКонтакте — родной цвет */
.social-icon.vk i {
  color: #4c75a3;
}

.social-icon.vk:hover i {
  color: #3d5e80;
  transform: translateY(-3px);
}

/* Анимация при наведении */
.social-icon:hover {
  opacity: 0.9;
}
.footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.footer-column {
  padding: 0 10px;
}
.footer-heading {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
  position: relative;
  padding-bottom: 8px;
}
.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #29b3c3;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #474747;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #ff6b00;
  transform: translateX(5px);
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 15px;
}
.contact-icon {
  color: #29b3c3;
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.contact-item a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-item a:hover {
  color: #ff6b00;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.footer-copyright {
  color: #474747;
  font-size: 14px;
}
.footer-legal {
  display: flex;
  gap: 10px;
}
.footer-legal a {
  color: #474747;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: #ff6b00;
}
.cat-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  position: relative;
  font-family: 'Arial', sans-serif;
  margin-top: 50px;
}
.city-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  overflow-y: auto;
}
.city-modal .modal-content {
  background-color: #fefefe;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.city-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}
.city-modal .close-modal:hover {
  color: #333;
}
.city-modal h3 {
  margin-top: 0;
  color: #2c3e50;
}
.city-suggestion {
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}
.city-suggestion span {
  font-size: 1.7em;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
.confidence {
  font-size: 0.9em;
  color: #666;
}
.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.btn-confirm {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}
.btn-other {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}
.similar-cities {
  margin: 20px 0;
}
.similar-city {
  display: inline-block;
  margin: 5px;
  padding: 8px 15px;
  background: #e9ecef;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.similar-city:hover {
  background: #dee2e6;
}
.search-city-block {
  margin-top: 20px;
}
.city-modal .search-wrapper {
  position: relative;
  width: 100%;
  margin: 15px 0;
  box-sizing: border-box;
}
.search-wrapper input {
  width: 100%;
  padding: 12px 40px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  color: #999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-icon .fas {
  font-size: 16px;
}
.city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #eee;
  border-radius: 5px;
  display: none;
}
.city-list li {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.city-list li:hover {
  background-color: #f5f5f5;
}
.city-list .no-results {
  color: #999;
  text-align: center;
  padding: 15px;
  cursor: default;
}
.city-modal #modal-city-input {
  width: 100%;
  padding: 10px 40px 10px 40px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}
.city-modal {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}
.city-modal .city-list {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-top: 5px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .city-modal #modal-city-input {
  padding: 8px 35px 8px 40px;
  font-size: 0.9em;
}
}
.bbik-title, .search-title, .search-subtitle {
  position: relative;
  z-index: 1;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #2d3748;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle:hover {
  color: #2563eb;
  transform: scale(1.1);
}
#main-menu {
  flex: 1;
}
#main-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}
#main-menu a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 0;
  transition: color 0.3s ease;
  position: relative;
}
#main-menu a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #4299e1 0%, #22d5ea 100%);
  transition: width 0.3s ease;
}
#main-menu a:hover {
  color: #2563eb;
}
#main-menu a:hover::after {
  width: 100%;
}
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 2.2rem;
  color: #2d3748;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #4299e1 0%, #22d5ea 100%);
}
.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  padding: 40px 20px;
}
.hero-content h1 {
  font-size: 2.8rem;
  color: #2d3748;
  margin-bottom: 15px;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 25px;
  max-width: 700px;
}
.hero-image {
  width: 100%;
  max-width: 800px;
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.hero-image:hover img {
  transform: scale(1.03);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.about-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.about-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #4299e1 0%, #22d5ea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}
.about-card h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 15px;
}
.about-card p {
  color: #4a5568;
  line-height: 1.6;
}
.stats-section {
  background: linear-gradient(135deg, #4299e1 0%, #22d5ea 100%);
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 16px;
  color: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}
.team-section {
  margin: 80px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 25px;
}
.team-card:hover {
  transform: translateY(-10px);
}
.team-photo {
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
}
.team-card h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 5px;
}
.team-position {
  color: #4299e1;
  font-weight: 500;
  margin-bottom: 15px;
}
.team-bio {
  color: #4a5568;
  padding: 0 20px;
  line-height: 1.6;
}
.reviews-section {
  margin: 80px 0;
}
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.review-author h4 {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 5px;
}
.review-rating {
  color: #ffc107;
}
.review-text {
  color: #4a5568;
  line-height: 1.6;
  font-style: italic;
}
.cta-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 16px;
  text-align: center;
}
.cta-content h2 {
  font-size: 2.2rem;
  color: #2d3748;
  margin-bottom: 15px;
}
.cta-content p {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto 30px;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #4299e1 0%, #22d5ea 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
  margin-bottom: 25px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
}
.btn-secondary {
  background: white;
  color: #4299e1;
  border: 2px solid #4299e1;
}
.btn-secondary:hover {
  background: #f8fafc;
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .hero-content h1 {
  font-size: 2.2rem;
}
.section-header h2 {
  font-size: 1.8rem;
}
}
#main-menu a.active {
  color: #2563eb;
}
#main-menu a.active::after {
  width: 100%;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.advantage-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}
.advantage-card:hover {
  transform: translateY(-10px);
}
.advantage-icon {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 20px;
}
.advantage-card h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 15px;
}
.advantage-card p {
  color: #4a5568;
  line-height: 1.6;
}
.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.tab {
  padding: 12px 25px;
  background: #f1f5f9;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tab:hover {
  background: #e2e8f0;
}
.tab.active {
  background: #2563eb;
  color: white;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.step {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}
.step h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 15px;
}
.step p {
  color: #4a5568;
  line-height: 1.6;
}
.service-card img {
  width: 80px;
  height: auto;
}
.placement-hero {
  background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
  color: white;
}
.placement-hero .hero-content h1,
.placement-hero .hero-subtitle {
  color: white;
}
.placement-hero .hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}
.benefit-card:hover {
  transform: translateY(-10px);
}
.benefit-icon {
  font-size: 2.5rem;
  color: #2b6cb0;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 15px;
}
.benefit-card p {
  color: #4a5568;
  line-height: 1.6;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.option-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.option-card:hover {
  transform: translateY(-5px);
}
.option-header {
  background: #2b6cb0;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.option-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-header h3 {
  margin: 0;
  font-size: 1.2rem;
}
.option-content {
  padding: 20px;
}
.option-features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.option-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
}
.option-features i {
  color: #2b6cb0;
}
.option-content p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}
.option-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  background: #2b6cb0;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.option-btn:hover {
  background: #1a4b8c;
}
.telegram-btn:hover {
  background: #0077b3;
}
.whatsapp-btn {
  background: #25D366;
}
.whatsapp-btn:hover {
  background: #1da851;
}
.feedback-btn {
  background: #4a5568;
}
.feedback-btn:hover {
  background: #2d3748;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.step {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2b6cb0 0%, #1a4b8c 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}
.step h3 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 10px;
}
.step p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}
.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.tariff-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease;
}
.tariff-card:hover {
  transform: translateY(-5px);
}
.tariff-card.popular {
  border: 2px solid #2b6cb0;
}
.popular-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: #2b6cb0;
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.tariff-header {
  padding: 25px;
  background: #f7fafc;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.tariff-header h3 {
  margin: 0;
  color: #1e293b;
  font-size: 1.4rem;
}
.tariff-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b6cb0;
  margin-top: 10px;
}
.tariff-features {
  list-style: none;
  padding: 20px;
  margin: 0;
}
.tariff-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #4a5568;
  line-height: 1.5;
}
.tariff-features i {
  color: #2b6cb0;
  margin-top: 3px;
}
.tariff-btn {
  display: block;
  margin: 0 20px 20px;
  padding: 12px;
  text-align: center;
  background: #2b6cb0;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.tariff-btn:hover {
  background: #1a4b8c;
}
.tariffs-note {
  margin-top: 30px;
  padding: 20px;
  background: #f7fafc;
  border-radius: 8px;
  text-align: center;
  color: #4a5568;
}
.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-question {
  padding: 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1e293b;
}
.faq-question i {
  color: #718096;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8fafc;
}
.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: #4a5568;
  line-height: 1.6;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #2b6cb0;
}
.placement-cta {
  background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
  color: white;
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 16px;
  text-align: center;
}
.placement-cta h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
}
.placement-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}
.placement-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.platform-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  padding: 60px 20px;
  border-radius: 16px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.platform-hero .hero-content h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.platform-hero .hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 25px;
}
.hero-badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.badge {
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge.available {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}
.badge.testing {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}
.badge i {
  font-size: 1.1rem;
}
.platform-hero .hero-image {
  max-width: 600px;
  margin-top: 30px;
}
.platform-hero .hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.platform-advantages {
  margin-bottom: 80px;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.platform-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.platform-card:hover {
  transform: translateY(-5px);
}
.platform-header {
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #f1f5f9;
}
.platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  min-height: 50px;
  min-width: 50px;
}
.platform-icon.website {
  background: #2563eb;
}
.platform-icon.app {
  background: #4f46e5;
}
.platform-icon.telegram {
  background: #0088cc;
}
.platform-header h3 {
  margin: 0;
  flex-grow: 1;
  font-size: 1.1rem;
  color: #1e293b;
}
.platform-status {
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.platform-status.available {
  background: #e6ffed;
  color: #2ea44f;
}
.platform-status.testing {
  background: #fff8e6;
  color: #e6a700;
}
.platform-content {
  padding: 25px;
}
.platform-content p {
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.6;
}
.platform-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.platform-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4a5568;
}
.platform-features i {
  color: #2563eb;
  margin-top: 3px;
}
.platform-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.platform-btn:hover {
  background: #1d4ed8;
}
.telegram-btn:hover {
  background: #0077b3;
}
.platform-notify {
  text-align: center;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
  margin-top: 20px;
}
.platform-notify p {
  margin: 0 0 10px 0;
  color: #64748b;
  font-size: 0.9rem;
}
.notify-btn {
  padding: 8px 15px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.notify-btn:hover {
  background: #4338ca;
}
.comparison-table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-top: 40px;
  background: #fff;
}
.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: #2563eb;
  color: white;
  font-weight: 500;
}
.header-feature, .header-platform {
  padding: 15px;
  text-align: center;
}
.header-feature {
  text-align: left;
}
.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #f1f5f9;
}
.table-row:last-child {
  border-bottom: none;
}
.row-feature, .row-platform {
  padding: 15px;
}
.row-feature {
  color: #4a5568;
  border-right: 1px solid #f1f5f9;
}
.row-platform {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.row-platform i {
  font-size: 1.2rem;
}
.row-platform .fa-check {
  color: #2ea44f;
}
.row-platform .fa-times {
  color: #e53e3e;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.case-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.case-card:hover {
  transform: translateY(-5px);
}
.case-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #2563eb;
  margin: 0 auto 20px;
}
.case-card h3 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 20px;
}
.case-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.case-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: #4a5568;
  line-height: 1.5;
}
.case-list li:before {
  content: '•';
  position: absolute;
  left: 10px;
  color: #2563eb;
  font-size: 1.2rem;
}
.platform-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 16px;
  text-align: center;
}
.platform-cta h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
}
.platform-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}
.platform-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.platform-cta .btn-primary {
  background: white;
  color: #2563eb;
}
.platform-cta .btn-primary:hover {
  background: #f8fafc;
}
.platform-cta .telegram-btn {
  background: #0088cc;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}
.platform-cta .telegram-btn:hover {
  background: #0077b3;
}
.vacancy-hero {
  background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
  color: white;
  padding: 60px 20px;
  border-radius: 16px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vacancy-hero .hero-content h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.vacancy-hero .hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 25px;
}
.vacancies-container {
  max-width: 900px;
  margin: 40px auto 0;
}
.vacancy-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.vacancy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.vacancy-header {
  padding: 20px 25px;
  background: #2b6cb0;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.vacancy-header h3 {
  margin: 0;
  font-size: 1.4rem;
}
.vacancy-salary {
  font-size: 1.3rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  padding: 5px 15px;
  border-radius: 50px;
}
.vacancy-content {
  padding: 25px;
}
.vacancy-info {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  font-size: 0.95rem;
}
.info-item i {
  color: #2b6cb0;
}
.vacancy-description h4 {
  color: #1e293b;
  margin: 20px 0 10px 0;
  font-size: 1.1rem;
}
.vacancy-description ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.vacancy-description li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  color: #4a5568;
  line-height: 1.5;
}
.vacancy-description li:before {
  content: '•';
  position: absolute;
  left: 10px;
  color: #2b6cb0;
  font-size: 1.2rem;
}
.vacancy-footer {
  margin-top: 30px;
  text-align: center;
}
.apply-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #2b6cb0;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.apply-btn:hover {
  background: #1a4b8c;
}
.alert {
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert.success {
  background: #e6ffed;
  color: #2ea44f;
  border: 1px solid #2ea44f;
}
.alert.error {
  background: #ffebee;
  color: #d32f2f;
  border: 1px solid #d32f2f;
}
.alert i {
  font-size: 1.2rem;
}
.vacancy-form {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-top: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #4a5568;
  font-weight: 500;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2b6cb0;
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-group input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px dashed #e2e8f0;
  border-radius: 6px;
}
.form-submit {
  text-align: center;
  margin-top: 30px;
}
.submit-btn {
  padding: 14px 40px;
  background: #2b6cb0;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}
.submit-btn:hover {
  background: #1a4b8c;
}
.form-note {
  font-size: 0.85rem;
  color: #718096;
  margin-top: 15px;
}
.form-note a {
  color: #2b6cb0;
  text-decoration: none;
}
.form-note a:hover {
  text-decoration: underline;
}
.g-recaptcha {
  margin-top: 15px;
  transform: scale(0.9);
  transform-origin: 0 0;
}
.rules-section {
  margin-bottom: 60px;
}
.rules-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.rules-block {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.rules-icon {
  font-size: 1.8rem;
  color: #2b6cb0;
  flex-shrink: 0;
  margin-top: 5px;
}
.rules-text h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 10px;
}
.rules-text p {
  color: #4a5568;
  line-height: 1.6;
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.rule-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.rule-card:hover {
  transform: translateY(-5px);
}
.rule-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.rule-number {
  width: 30px;
  height: 30px;
  background: #2b6cb0;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.rule-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #1e293b;
}
.rule-content p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}
.rules-accordion {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.rules-accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.rules-accordion-header {
  padding: 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.rules-accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1e293b;
}
.rules-accordion-header i {
  color: #718096;
  transition: transform 0.3s ease;
}
.rules-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8fafc;
}
.rules-accordion-content p {
  margin: 0;
  padding: 0 20px 20px;
  color: #4a5568;
  line-height: 1.6;
}
.rules-accordion-item.active .rules-accordion-header i {
  transform: rotate(180deg);
  color: #2b6cb0;
}
.rules-cta {
  background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
  color: white;
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 16px;
  text-align: center;
}
.rules-cta h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
}
.rules-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}
.drivers-rules .section-header h2::after {
  background: linear-gradient(135deg, #4299e1 0%, #22d5ea 100%);
}
.services-rules .section-header h2::after {
  background: linear-gradient(135deg, #2b6cb0 0%, #1a4b8c 100%);
}
.drivers-rules .rule-number {
  background: #4299e1;
}
.services-rules .rules-accordion-header h3 {
  color: #2b6cb0;
}
.terms-section {
  margin-bottom: 50px;
}
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 30px;
}
.term-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 20px;
  border-left: 4px solid #2b6cb0;
}
.term-card h3 {
  color: #2b6cb0;
  margin-top: 0;
  font-size: 1.2rem;
}
.term-card p {
  color: #4a5568;
  margin-bottom: 0;
}
.acceptance-notice {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 0 5px 5px 0;
}
.notice-icon {
  color: #ffc107;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.rights-tabs {
  max-width: 1000px;
  margin: 0 auto;
}
.tabs-header {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tab-button {
  padding: 12px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: #718096;
  position: relative;
  transition: all 0.3s;
}
.tab-button.active {
  color: #2b6cb0;
}
.tab-button.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2b6cb0;
}
.tab-content {
  display: none;
  padding: 0 10px;
}
.tab-content.active {
  display: block;
}
.rights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.rights-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.rights-list i {
  margin-top: 3px;
  flex-shrink: 0;
}
.rights-list i.fa-check-circle {
  color: #38a169;
}
.rights-list i.fa-exclamation-triangle {
  color: #e53e3e;
}
.responsibility-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}
.responsibility-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}
.responsibility-icon {
  font-size: 2rem;
  color: #2b6cb0;
  margin-bottom: 15px;
}
.responsibility-card h3 {
  margin-top: 0;
  color: #1a365d;
}
.disclaimer {
  background: #fff5f5;
  border-left: 4px solid #e53e3e;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  grid-column: 1 / -1;
  border-radius: 0 5px 5px 0;
}
.disclaimer-icon {
  color: #e53e3e;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.agreement-content {
  max-width: 800px;
  margin: 0 auto;
}
.agreement-block {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}
.agreement-icon {
  font-size: 1.5rem;
  color: #2b6cb0;
  margin-top: 5px;
  flex-shrink: 0;
}
.support-hero {
  background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
  color: white;
}
.support-hero .hero-content h1,
.support-hero .hero-subtitle {
  color: white;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.category-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-icon {
  font-size: 2.5rem;
  color: #2b6cb0;
  margin-bottom: 15px;
}
.category-card h3 {
  margin: 0 0 10px 0;
  color: #1a365d;
}
.category-card p {
  color: #4a5568;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.category-link {
  color: #2b6cb0;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.category-link:hover {
  text-decoration: underline;
}
.report-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2d3748;
}
.form-group select,
.form-group textarea,
.form-group input[type="text"],
.form-group input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-group select:focus,
.form-group textarea:focus,
.form-group input[type="text"]:focus {
  border-color: #4299e1;
  outline: none;
}
.submit-btn {
  background: linear-gradient(135deg, #2b6cb0 0%, #1a4b8c 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s;
}
.submit-btn:hover {
  transform: translateY(-2px);
}
.report-alternative {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.report-alternative ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}
.report-alternative li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.report-alternative i {
  color: #2b6cb0;
  width: 20px;
  text-align: center;
}
.complaint-tabs {
  max-width: 800px;
  margin: 0 auto;
}
.complaint-tabs .tabs-header {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 20px;
}
.complaint-tabs .tab-button {
  padding: 12px 25px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: #718096;
  position: relative;
}
.complaint-tabs .tab-button.active {
  color: #2b6cb0;
}
.complaint-tabs .tab-button.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2b6cb0;
}
.complaint-tabs .tab-content {
  display: none;
  background: #fff;
  padding: 25px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.complaint-tabs .tab-content.active {
  display: block;
}
.partners-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.partners-faq {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.partners-faq li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e2e8f0;
}
.contact-methods {
  display: grid;
  gap: 15px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-method i {
  font-size: 1.2rem;
  color: #2b6cb0;
  width: 25px;
}
.working-hours {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.working-hours li {
  margin-bottom: 10px;
}
.emergency-contact {
  background: #fff5f5;
  padding: 15px;
  border-radius: 6px;
  border-left: 3px solid #e53e3e;
}
.emergency-contact p {
  margin: 5px 0;
}
.emergency-contact small {
  color: #718096;
  font-size: 0.8rem;
}
.support-cta {
  background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
  color: white;
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 16px;
  text-align: center;
}
.support-cta h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
}
.support-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}
.support-cta .btn-primary i,
.support-cta .btn-secondary i {
  margin-right: 8px;
}
.partners-section {
  background: #f8fafc;
  padding: 0px 20px;
  margin: 60px 0 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.partners-carousel {
  max-width: 1200px;
  margin: 40px auto;
  position: relative;
  padding: 20px 0;
}
.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: breathe 6s ease-in-out infinite;
}
.partner-item {
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.5s ease;
  margin: 0 auto;
}
.partner-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}
.partner-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.partners-cta {
  text-align: center;
  margin-top: 40px;
}
@keyframes breathe {
  0%, 100% {
  transform: scale(0.95);
}
50% {
  transform: scale(1.05);
}
}
@keyframes gentleSwing {
  0%, 100% {
  transform: translateX(-5px) rotate(-1deg);
}
50% {
  transform: translateX(5px) rotate(1deg);
}
}
.image-modal {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.image-modal.show {
  display: block;
  opacity: 1;
}
.image-modal .modal-content {
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  animation: zoomIn 0.3s;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}
.close-modal:hover {
  color: #aaa;
}
@keyframes zoomIn {
  from {
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
}
to {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
}
.sponsorship-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.sponsor-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
  border: 2px solid #e2e8f0;
}
.sponsor-card.gold {
  border-color: #FFD700;
}
.sponsor-card.silver {
  border-color: #C0C0C0;
}
.sponsor-card.bronze {
  border-color: #CD7F32;
}
.sponsor-card:hover {
  transform: translateY(-5px);
}
.sponsor-badge {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
}
.badge-gold {
  background: linear-gradient(135deg, #FFD700, #FFC000);
  color: #333;
}
.badge-silver {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
  color: #333;
}
.badge-bronze {
  background: linear-gradient(135deg, #CD7F32, #B87333);
  color: white;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}
.benefits-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.benefits-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #4299e1;
}
.partner-form {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  max-width: 800px;
  margin: 40px auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-control:focus {
  border-color: #4299e1;
  outline: none;
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.submit-btn {
  background: linear-gradient(135deg, #4299e1 0%, #22d5ea 100%);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 153, 225, 0.3);
}
.press-section {
  margin-bottom: 60px;
}
.media-kit {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-top: 30px;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.download-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: #4299e1;
}
.download-icon {
  font-size: 2rem;
  color: #4299e1;
  margin-bottom: 15px;
}
.download-btn {
  margin-top: auto;
  padding: 10px 15px;
  background: #4299e1;
  color: white;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.download-btn:hover {
  background: #3182ce;
}
.press-contacts {
  background: #f8fafc;
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
}
.contact-card {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}
.contact-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-info {
  margin-left: 10px;
}
.contact-info h4 {
  margin: 0 0 5px 0;
  color: #2d3748;
}
.contact-info p {
  margin: 0;
  color: #4a5568;
}
.contact-info a {
  color: #4299e1;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info a:hover {
  color: #3182ce;
  text-decoration: underline;
}
.press-releases {
  margin-top: 50px;
}
.release-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.release-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.release-date {
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.release-card h3 {
  margin: 0 0 15px 0;
  color: #2d3748;
}
.release-card p {
  color: #4a5568;
  margin-bottom: 20px;
}
.read-more {
  color: #4299e1;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.read-more i {
  margin-left: 5px;
  transition: transform 0.3s;
}
.read-more:hover i {
  transform: translateX(3px);
}
@media (max-width: 480px) {
  .city-modal .modal-content {
  padding: 12px;
}
.modal-buttons {
  flex-direction: column;
  gap: 10px;
}
.modal-buttons button {
  width: 100%;
}
.similar-cities {
  display: flex;
  flex-direction: column;
}
.similar-city {
  width: 100%;
  margin: 3px 0;
  text-align: center;
}
.partner-item {
  width: 130px;
  height: 60px;
}
.rules-block {
  flex-direction: column;
  gap: 10px;
}
.rules-icon {
  margin-bottom: 5px;
}
.rules-accordion-header {
  padding: 15px;
}
.rules-accordion-header h3 {
  font-size: 1rem;
}
.terms-grid {
  grid-template-columns: 1fr;
}
.tabs-header {
  flex-direction: column;
}
.tab-button {
  text-align: left;
}
.tab-button.active:after {
  width: 3px;
  height: 100%;
  left: -1px;
  top: 0;
}
.responsibility-content {
  grid-template-columns: 1fr;
}
.media-kit {
  padding: 20px;
}
.contact-card {
  flex-direction: column;
  text-align: center;
}
.contact-icon {
  margin-right: 0;
  margin-bottom: 15px;
}
}
@media (max-width: 576px) {
  .table-header,
    .table-row {
  grid-template-columns: 2fr 1fr;
}
.header-platform:nth-child(2),
    .row-platform:nth-child(2) {
  display: none;
}
.platform-header {
  flex-direction: column;
  text-align: center;
}
.platform-status {
  margin-top: 10px;
}
}
@media (max-width: 768px) {
  .search-container {
  padding: 20px 15px !important;
  margin: 20px 15px !important;
  border-radius: 12px !important;
}
.bbik-title {
  font-size: 2.1rem !important;
}
.search-title {
  font-size: 1.4rem !important;
}
.search-input {
  padding: 7px 100px 7px 40px !important;
}
.search-clear {
  right: 90px !important;
  padding: 7px 10px !important;
}
.search-button {
  padding: 0 15px !important;
  font-size: 16px !important;
}
.header-mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.mobile-menu-toggle {
  display: block;
}
#main-menu {
  display: none;
  width: 100%;
  order: 3;
  margin-top: 10px;
}
#main-menu.active {
  display: block;
}
#main-menu ul {
  flex-direction: column;
  gap: 5px;
}
#main-menu a {
  display: block;
  padding: 10px 15px;
  background: #f8fafc;
  border-radius: 5px;
}
#main-menu a:hover {
  background: #e2e8f0;
}
.city-right-block {
  width: 100%;
  margin: 10px 0 0 0;
  order: 2;
}
.header-logo {
  margin-right: 0;
}
.hero-content h1 {
  font-size: 2.2rem;
}
.section-header h2 {
  font-size: 1.8rem;
}
.about-grid, .team-grid, .reviews-slider {
  grid-template-columns: 1fr;
}
.stats-grid {
  grid-template-columns: repeat(2, 1fr);
}
.cta-buttons {
  flex-direction: column;
  align-items: center;
}
.placement-hero .hero-buttons {
  flex-direction: column;
  align-items: center;
}
.step {
  padding: 20px 15px;
}
.popular-badge {
  right: -25px;
  padding: 3px 25px;
  font-size: 0.7rem;
}
.benefit-card, .option-card {
  padding: 20px 15px;
}
.faq-question {
  padding: 15px;
}
.faq-question h3 {
  font-size: 1rem;
}
.placement-cta .cta-buttons {
  flex-direction: column;
  align-items: center;
}
.platform-hero .hero-content h1 {
  font-size: 2rem;
}
.platform-hero .hero-subtitle {
  font-size: 1.1rem;
}
.table-header, .table-row {
  grid-template-columns: 2fr 1fr 1fr;
}
.header-platform:nth-child(3),
    .row-platform:nth-child(3) {
  display: none;
}
.platform-cta .cta-buttons {
  flex-direction: column;
  align-items: center;
}
.categories-grid {
  grid-template-columns: 1fr;
}
.complaint-tabs .tabs-header {
  flex-direction: column;
}
.complaint-tabs .tab-button {
  text-align: left;
}
.complaint-tabs .tab-button.active:after {
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
}
.partners-content {
  grid-template-columns: 1fr;
}
.report-form {
  padding: 20px;
}
.partners-section {
  padding: 40px 15px;
}
.partner-item {
  width: 150px;
  height: 70px;
  padding: 10px;
}
.image-modal .modal-content {
  max-width: 95%;
  max-height: 80%;
}
.close-modal {
  top: 10px;
  right: 20px;
  font-size: 30px;
}
.sponsorship-levels {
  grid-template-columns: 1fr;
}
.partner-form {
  padding: 20px;
}
}
@media (max-width: 992px) {
  .footer-middle {
  grid-template-columns: repeat(2, 1fr);
}
.footer-top {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-social {
  width: 100%;
}
.hero-content h1 {
  font-size: 2.2rem;
}
.section-header h2 {
  font-size: 1.8rem;
}
.table-header, .table-row {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
}
.section {
  margin-bottom: 30px;
}
.requisites {
  background-color: #f9f9f9;
  padding: 15px;
  border-left: 4px solid #ccc;
}
.search-help-link {
  margin-top: 12px;
  text-align: center;
}
.search-help-link a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.search-help-link a:hover {
  color: #0066cc;
}
.search-help-link i {
  font-size: 16px;
}
.search-help-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.search-help-modal-content {
  background-color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: modalFadeIn 0.3s ease-out;
}
@keyframes modalFadeIn {
  from {
  opacity: 0;
  transform: translateY(-20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}
.search-help-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-help-modal-header h3 {
  margin: 0;
  font-size: 20px;
  color: #333;
}
.search-help-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #777;
  padding: 0;
  line-height: 1;
}
.search-help-modal-body {
  padding: 20px;
  color: #444;
  line-height: 1.6;
}
.search-help-modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  text-align: right;
}
.search-help-modal-ok {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}
.search-help-modal-ok:hover {
  background-color: #0052a3;
}
@media (max-width: 480px) {
  .search-help-modal-content {
  width: 95%;
}
.search-help-modal-header h3 {
  font-size: 18px;
}
}
.service-card-pl {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.2s;
}
.service-card-pl img {
  width: 80px;
  height: auto;
}
.service-card-pl:hover {
  background: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.service-card-pl h3 {
  padding: 10px;
}
@media (max-width: 768px) {
  .service-card-pl h3 {
  font-size: 15px;
}
.service-card-pl img {
  width: 50px;
  height: auto;
}
.service-card-pl p {
  font-size: 11px;
}
}
.city-promo-block {
  padding: 15px 0;
  margin-bottom: 20px;
}
.city-promo-link {
  display: block;
  text-align: center;
}
.city-promo-image {
  max-height: 100px;
  width: auto;
  max-width: 100%;
  border-radius: 4px;
}
.city-promo-text {
  padding: 15px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.city-promo-text h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}
.city-promo-text p {
  margin-bottom: 15px;
  color: #666;
}
@media (max-width: 768px) {
  .city-promo-block {
  padding: 10px 0;
}
.city-promo-image {
  max-height: 80px;
}
.city-promo-text {
  padding: 10px;
}
}

/* Стили для страницы реферальной программы */
.referral-hero {
  background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
  color: white;
}

.referral-hero .hero-content h1,
.referral-hero .hero-subtitle {
  color: white;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.condition-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.condition-card:hover {
  transform: translateY(-5px);
}

.condition-icon {
  font-size: 2.5rem;
  color: #8e2de2;
  margin-bottom: 20px;
}

.condition-card h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 15px;
}

.condition-card p {
  color: #4a5568;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card-pl {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card-pl:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card-pl img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.service-card-pl h3 {
  font-size: 1.1rem;
  color: #1e293b;
  margin: 0;
}

.register-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2d3748;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #8e2de2;
  outline: none;
}

.submit-btn {
  background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.3);
}

.form-note {
  font-size: 0.85rem;
  color: #718096;
  margin-top: 15px;
  text-align: center;
}

.form-note a {
  color: #8e2de2;
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

.referral-cta {
  background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
  color: white;
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 16px;
  text-align: center;
}

.referral-cta h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
}

.referral-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.services-tabs .tab {
  padding: 12px 25px;
  background: #f1f5f9;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-tabs .tab:hover {
  background: #e2e8f0;
}

.services-tabs .tab.active {
  background: #8e2de2;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

@media (max-width: 768px) {
  .conditions-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .register-form {
    padding: 25px;
  }
  
  .services-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .services-tabs .tab {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .referral-cta h2 {
    font-size: 1.8rem;
  }
}

/* Стили для уведомления о последнем сервисе */
.latest-service-notification {
    display: flex;
    justify-content: center;
    margin: 20px auto 30px;
    max-width: 900px;
    padding: 0 15px;
}

.latest-service-bubble {
    position: relative;
    background: #f8f9fa;
    border-radius: 18px;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    border: 1px solid #e9ecef;
    animation: fadeInUp 0.5s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.latest-service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.latest-service-label {
    color: #676767;
    font-size: 14px;
    margin-bottom: 5px;
}

.latest-service-info {
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 100%;
}

.latest-service-name {
    font-weight: 600;
    color: #212529;
    font-size: 16px;
    margin-right: 10px;
}

.latest-service-city {
    background: #e9f5ff;
    color: #1200ff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.latest-service-tail {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f8f9fa;
}

/* Десктопная версия */
@media (min-width: 992px) {
    .latest-service-bubble {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 25px;
        border-radius: 30px;
    }
    
    .latest-service-content {
        flex-direction: row;
        justify-content: center;
        /* text-align: left; */
    }
    
    .latest-service-label {
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .latest-service-info {
        justify-content: center;
        flex-grow: 1;
		width: 30%;
    }
    
    .latest-service-tail {
        display: none;
    }
    
    /* Декоративные элементы по краям */
    .latest-service-bubble::before,
    .latest-service-bubble::after {
        content: "• • •";
        color: #dee2e6;
        letter-spacing: 2px;
        font-size: 12px;
    }
}

/* Мобильная версия */
@media (max-width: 991px) {
    .latest-service-bubble {
        max-width: 80%;
    }
    
    .latest-service-info {
        /* flex-direction: column;
        align-items: center; */
        gap: 3px;
		margin-top: 15px;
    }
    
    .latest-service-name {
        margin-right: 0;
        font-size: 15px;
		margin-bottom: 15px;
    }
    
    .latest-service-city {
        font-size: 12px;
    }
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FFK Comparison Table Styles */
.ffk-comparison-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    margin-bottom: 40px;
}

.ffk-comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Десктопная версия */
.ffk-comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ffk-comparison-header {
    display: contents;
}

.ffk-comparison-header > div {
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ffk-comparison-header .ffk-comparison-feature {
    text-align: left;
    background-color: #34495e;
}

.ffk-comparison-row {
    display: contents;
}

.ffk-comparison-row > div {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ffk-comparison-feature {
    background-color: #f8fafc;
    text-align: left;
}

.ffk-comparison-value {
    text-align: center;
    background-color: white;
}

.ffk-feature-name {
    font-weight: 600;
    color: #2c3e50;
}

.ffk-feature-desc {
    font-size: 0.85em;
    color: #7f8c8d;
    margin-top: 5px;
}

.ffk-option-name {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.ffk-option-price {
    font-size: 0.9em;
    opacity: 0.9;
}

.ffk-premium {
    color: #03b319;
    font-weight: 600;
}

.ffk-standard {
    color: #3498db;
    font-weight: 600;
}

.ffk-basic {
    color: #858585;
    font-weight: 600;
}

.ffk-comparison-row:nth-child(even) .ffk-comparison-feature {
    background-color: #f1f5f9;
}

.ffk-future-feature .ffk-feature-name {
    position: relative;
}

.ffk-badge {
    background-color: #f39c12;
    color: white;
    font-size: 0.7em;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
}

.ffk-future-feature .ffk-comparison-value {
    opacity: 0.8;
}

/* Мобильная версия */
.ffk-mobile-view {
    display: none;
}

.ffk-mobile-option-card {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.ffk-mobile-option-header {
    padding: 15px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ffk-mobile-option-header h3 {
    margin: 0;
    font-size: 1.2em;
}

.ffk-mobile-option-header.ffk-premium {
    background-color: #03b319;
}

.ffk-mobile-option-header.ffk-standard {
    background-color: #3498db;
}

.ffk-mobile-option-header.ffk-basic {
    background-color: #858585;
}

.ffk-mobile-features {
    background-color: white;
}

.ffk-mobile-feature {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.ffk-mobile-feature:last-child {
    border-bottom: none;
}

.ffk-mobile-feature .ffk-feature-info {
    display: flex;
    flex-direction: column;
}

.ffk-mobile-feature .ffk-feature-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.ffk-mobile-feature .ffk-feature-desc {
    font-size: 0.9em;
    color: #7f8c8d;
}

.ffk-mobile-feature .fa-check-circle {
    color: #2ecc71;
}

.ffk-mobile-feature .fa-minus {
    color: #95a5a6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .ffk-desktop-view {
        display: none;
    }
    
    .ffk-mobile-view {
        display: block;
    }
}

@media (min-width: 769px) {
    .ffk-mobile-view {
        display: none;
    }
}

/* Карты лояльности */
.loyalty-card {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.loyalty-card:hover {
    transform: translateY(-5px);
}

.card-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.organization {
    font-size: 0.9rem;
    opacity: 0.8;
}

.card-body {
    margin-bottom: 15px;
}

.card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.discount-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin-top: 10px;
}

.discount-list ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.discount-list li {
    margin-bottom: 5px;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.city {
    font-size: 0.8rem;
    opacity: 0.7;
}

.card-action-form {
    margin: 0;
}

/* Сетка карт */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Telegram News Block Styles */
.telegram-news-block {
    /* max-width: 400px; */
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    border: 1px solid #e1e1e1;
    background: #fff;
}

.telegram-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #0088cc;
    color: white;
}

.telegram-logo i {
    font-size: 28px;
    margin-right: 12px;
}

.telegram-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.telegram-info p {
    margin: 3px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.telegram-content {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.telegram-content p {
    margin: 0 0 15px;
    font-size: 14px;
    color: #333;
}

.telegram-message-preview {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 10px;
    position: relative;
}

.message-time {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 11px;
    color: #888;
}

.message-content {
    font-size: 13px;
    padding-right: 50px;
    color: #333;
}

.telegram-button {
    display: block;
    text-align: center;
    padding: 12px;
    background: #0088cc;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.telegram-button:hover {
    background: #0077b3;
}

.telegram-button i {
    margin-right: 8px;
}

/* Стили для модального окна входа */
.login-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s;
}

.login-modal-content {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  margin: 10% auto;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 400px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.3);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #333;
}

.login-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.login-option {
  display: flex;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  will-change: transform;
}

/* Добавьте это в конец вашего CSS файла */
.login-menu-item a.login-trigger[href="/users/"],
.login-menu-item a.login-trigger[href="/user/"] {
  /* Наследует все стили от .login-trigger */
  cursor: pointer;
}

.login-option:hover {
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  background: #f8f9fa;
}

.option-icon {
  font-size: 28px;
  margin-right: 15px;
  width: 40px;
  text-align: center;
  margin-left: 20px;
}

.option-text h4 {
  margin: 0 0 5px 0;
  font-weight: 600;
}

.option-text p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.login-modal h3 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Анимации */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Адаптивность */
@media (max-width: 500px) {
  .login-modal-content {
    margin: 20% auto;
    width: 75%;
  }
  
  .login-option {
    padding: 12px;
  }
  
  .option-icon {
    font-size: 24px;
    margin-right: 12px;
	margin-left: 0px;
  }
}

.section-header-vh {
	justify-content: center;
	text-align: center;
	margin-bottom: 30px;
}	

/* Стили для иконки избранного */
.favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.favorite-icon:hover {
    transform: scale(1.1);
}

.favorite-icon i {
    color: #ff4757;
    font-size: 16px;
}

.favorite-icon i.fas {
    color: #ff4757;
}

/* Стили для уведомлений */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    z-index: 1000;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.notification.success {
    background: #2ecc71;
}

.notification.warning {
    background: #e67e22;
}

.notification.error {
    background: #e74c3c;
}

.notification.fade-out {
    animation: fadeOut 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Стили для ленты "ещё" на категориях с подкатегориями */
.category-tile {
    position: relative;
    overflow: hidden;
}

/* Стили для ленты "ещё" на категориях с подкатегориями */
.category-tile {
    position: relative;
    overflow: hidden;
}

/* Уголок с переносом текста (рабочая версия) */
.category-tile.has-children::after {
    content:  attr(data-children-count) "\00000a" var(--service-text, "услуг") !important; /* \00000a - Unicode переноса */
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, transparent 0%, transparent 50%, #f1f1f1 50%, #ffffff 100%);
    transform: translate(45px, -45px) rotate(45deg);
    color: #606060;
    font-size: 14px;
    text-align: center;
    white-space: pre; /* Обязательно! */
    padding-top: 55px; /* Смещение текста вниз */
    box-sizing: border-box;
    z-index: 1;
    display: block;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);


