:root {
  --primary-black: #1a1a1a;
  --secondary-black: #2d2d2d;
  --light-gray: #f5f5f5;
  --medium-gray: #888888;
  --dark-gray: #404040;
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --gold-light: #f4e4a6;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--light-gray);
  background-color: var(--primary-black);
  padding-top: 80px;
}

/* Навигация */
.navbar {
  background-color: var(--primary-black) !important;
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.logo {
  height: 50px;
  transition: all 0.3s ease;
}

.nav-link.active {
  color: var(--gold) !important;
}

/* Основная секция контактов */
.contacts-section {
  padding: 100px 0 80px;
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--secondary-black) 100%
  );
}

/* Заголовок страницы */
.page-header {
  margin-bottom: 60px;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-gray);
  margin-bottom: 20px;
  position: relative;
}

.title-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, var(--gold-dark), var(--gold));
  margin: 0 auto;
  border-radius: 2px;
}

/* Вводный текст */
.intro-section {
  margin-bottom: 60px;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--medium-gray);
  text-align: center;
  line-height: 1.8;
}

/* Контактные карточки */
.contact-info-section {
  margin-bottom: 60px;
}

.contact-card {
  background: var(--secondary-black);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  border: 1px solid var(--dark-gray);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 2rem;
  color: var(--primary-black);
}

.contact-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.contact-details {
  color: var(--medium-gray);
}

.phone-number {
  color: var(--gold);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.phone-number:hover {
  color: var(--gold-light);
  transform: scale(1.05);
}

.working-hours {
  text-align: center;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.days {
  font-weight: 600;
  color: var(--gold);
}

.time {
  color: var(--light-gray);
}

.note {
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-style: italic;
  margin-top: 10px;
}

.address {
  text-align: center;
}

.address p {
  margin-bottom: 10px;
}

.address strong {
  color: var(--gold);
}

/* Секция местоположения */
.location-section {
  margin-bottom: 60px;
}

.location-info h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.location-info p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.location-features {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--light-gray);
}

.feature-item i {
  color: var(--gold);
  margin-right: 15px;
  font-size: 1.2rem;
  width: 20px;
}

.map-container {
  background: var(--secondary-black);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid var(--dark-gray);
  height: 100%;
}

#yandex-map {
  border-radius: 10px;
  min-height: 400px;
}

/* Секция услуг */
.services-section {
  margin-bottom: 60px;
}

.services-section h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.services-list {
  background: var(--secondary-black);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--dark-gray);
  height: 100%;
}

.service-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--light-gray);
  padding: 15px;
  background: var(--primary-black);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: var(--dark-gray);
  transform: translateX(10px);
}

.service-item i {
  color: var(--gold);
  margin-right: 15px;
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}

.quality-info {
  background: var(--secondary-black);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--dark-gray);
  text-align: center;
}

.quality-info p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin: 0;
}

/* Секция записи */
.booking-section {
  margin-bottom: 60px;
}

.booking-card {
  background: var(--secondary-black);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid var(--dark-gray);
  text-align: center;
}

.booking-card h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.booking-card p {
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.booking-methods {
  margin: 30px 0;
}

.booking-method {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--light-gray);
  padding: 15px;
  background: var(--primary-black);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.booking-method:hover {
  background: var(--dark-gray);
  transform: scale(1.02);
}

.booking-method i {
  color: var(--gold);
  margin-right: 15px;
  font-size: 1.3rem;
  width: 25px;
  text-align: center;
}

.closing-text {
  color: var(--gold);
  font-style: italic;
  margin-top: 30px;
  font-size: 1.1rem;
}

/* CTA кнопка */
.cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, var(--gold-dark), var(--gold));
  color: var(--primary-black);
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: var(--primary-black);
}

.cta-button:active {
  transform: translateY(1px);
}

.cta-icon {
  margin-left: 12px;
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.cta-button:hover .cta-icon {
  transform: translateX(5px);
}

/* Анимация "пульсации" */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  animation: pulse 2s infinite;
}

/* Футер */
.footer {
  background-color: var(--secondary-black);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer__logo {
  width: 100px;
  height: 100px;
}

.footer-links h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer .contact-info {
  color: var(--medium-gray);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer .contact-info i {
  color: var(--gold);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-black);
  color: var(--gold);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--primary-black);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid var(--dark-gray);
  padding-top: 20px;
  margin-top: 40px;
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 992px) {
  .main-title {
    font-size: 2rem;
  }
  
  .contact-card {
    margin-bottom: 30px;
  }
  
  .location-info {
    margin-bottom: 30px;
  }
  
  .services-list {
    margin-bottom: 30px;
  }
  
  .footer {
    text-align: center;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer .contact-info {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 1.8rem;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  .booking-card {
    padding: 30px 20px;
  }
  
  .cta-button {
    padding: 14px 30px;
    font-size: 1.1rem;
  }
  
  .booking-method {
    flex-direction: column;
    text-align: center;
  }
  
  .booking-method i {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .hours-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .contacts-section {
    padding: 80px 0 60px;
  }
  
  .contact-card,
  .booking-card,
  .services-list,
  .quality-info {
    padding: 20px;
  }
  
  .map-container {
    padding: 10px;
  }
  
  #yandex-map {
    min-height: 300px;
  }
}

