.footer {
  padding: 60px 0 40px;
  background: radial-gradient(circle at top, #111 0%, #000 100%);
  color: #fff;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */
.footer__top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto auto;
  align-items: start;
  gap: 48px;
}

/* BRAND */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__logo img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.footer__subtitle {
  display: block;
  font-size: 12px;
  color: #a1a1aa;
  margin-top: -14px;
  line-height: 1.1;
}

/* SOCIALS */
.footer__socials {
  display: flex;
  gap: 16px;
  justify-self: start;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: all 0.25s ease;
}

.footer__social img {
  width: 40px;
  height: 40px;
}

.footer__social:hover {
  background: #f97316;
  transform: translateY(-3px) scale(1.08);
}

/* CONTACTS */
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-self: end;
  font-size: 14px;
  color: #d4d4d8;
}

/* EMAIL */
.footer__email {
  color: #d4d4d8;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__email:hover {
  color: #f97316;
}

/* PHONES */
.footer__phones {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 25px;
}

.footer__phones-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__phone {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.25s ease;
}

.footer__phone:hover {
  color: #f97316;
}

/* CTA */
.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ff8c3a);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 12px 30px rgba(249, 115, 22, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.25s ease;
  justify-self: end;
  white-space: nowrap;

  margin-top: 30px; 
}

.footer__cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 40px rgba(249, 115, 22, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* DIVIDER */
.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 40px 0;
}

/* BOTTOM */
.footer__bottom {
  display: flex;
}

.footer__city-title {
  font-weight: 600;
}

.footer__city-text {
  margin-top: 8px;
  color: #a1a1aa;
  font-size: 14px;
  line-height: 1.6;
}

/* MOBILE MENU FIX */
.menu__phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.menu__cta.footer__cta {
  display: flex;
  width: calc(100% - 80px);
  max-width: 420px;
  margin: 28px auto 0;
  justify-content: center;
}

/* ЛОГО + СОЦСЕТИ В ОДНОЙ СТРОКЕ */
.footer__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__socials {
  transform: translateX(-26px);
}

/* убираем старые смещения */
.footer__socials {
  margin-left: 0 !important;
  justify-self: auto !important;
}

.footer__brand-left {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.footer__subtitle {
  margin-top: -9 !important;
  font-size: 10px;
  color: #a1a1aa;
  line-height: 1.1;
}

.footer__cta {
  transform: translateY(21px) !important;
}

.footer__cta:hover {
  transform: translateY(25px) !important;
}