/* Contacts Hero */
.contacts-hero {
  padding: 60px 0 40px;
}

.contacts-hero__wrap {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contacts-hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: #fff4e8;
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contacts-hero__title {
  font-size: 52px;
  margin: 0 0 20px;
  line-height: 1.1;
}

.contacts-hero__text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contacts-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contacts-hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

/* Buttons */
.btn--primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn--outline {
  display: inline-block;
  padding: 12px 26px;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn--outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero contact card */
.contact-item {
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: none;
}

.contact-item__label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #f08a24;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item__value {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.contact-item__value:hover {
  color: var(--accent);
}

/* Socials */
.socials {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.socials__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 110px;
  padding: 12px 24px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.socials__link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(240, 138, 36, 0.25);
}

.socials__link .social-icon {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease;
}

.socials__link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.socials__link:hover i {
  color: #fff;
}

/* Contacts Main */
.contacts-main {
  padding: 40px 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.section-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section-title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
}

.section-text {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.6;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.contact-row__value a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.contact-row__value a:hover {
  color: var(--accent);
}

/* Form */
.contact-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 138, 36, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Map */
.contacts-map {
  padding: 0 0 80px;
}

.map-container {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 968px) {
  .contacts-hero__wrap,
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contacts-hero__title {
    font-size: 42px;
  }

  .section-card {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .contacts-hero {
    padding: 40px 0 20px;
  }

  .contacts-hero__title {
    font-size: 32px;
  }

  .contacts-hero__text {
    font-size: 16px;
  }

  .contacts-hero__card {
    padding: 24px;
  }

  .contact-item__value {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .btn--primary,
  .btn--outline {
    padding: 10px 20px;
    font-size: 14px;
  }

  .socials {
    gap: 10px;
  }

  .socials__link {
    min-width: 90px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .socials__link .social-icon {
    width: 16px;
    height: 16px;
  }
}

/* Для контактных строк с иконками (если добавили) */
.contact-row__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff4e8, #ffe4cc);
  border-radius: 14px;
  color: var(--accent);
  font-size: 24px;
}

.contact-row__content {
  flex: 1;
}

.contact-row__label {
  font-size: 13px;
  font-weight: 600;
  color: #f08a24;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.map-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
}