/* ===========================
   ФУТЕР И ФОРМА ЗАЯВКИ
   =========================== */

/* ---------- Секция запроса расчёта ---------- */
.request-form {
    margin: 80px 0 40px;
    background: rgba(46, 46, 46, 1);
    border-radius: var(--radius-lg);
    padding: 48px clamp(20px, 6vw, 60px);
    color: #fff;
    box-sizing: border-box;
}

.request-form__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.request-form__title {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--orange);
}

.request-form__subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.request-form__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.request-form__field {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    text-align: left;
}

.request-form__label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.request-form__input {
    width: 100%;
    max-width: 480px;
    height: 56px;
    padding: 0 20px;
    border: none;
    border-radius: 30px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.2s;
    box-sizing: border-box;
}

.request-form__input::placeholder {
    color: rgba(255,255,255,0.5);
}

.request-form__input:focus {
    box-shadow: 0 0 0 2px var(--orange);
}

.request-form__btn {
    width: 100%;
    max-width: 480px;
    height: 56px;
    border: none;
    border-radius: 100px;
    background: var(--orange);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.request-form__btn:hover {
    background: #e0691a;
}

.request-form__agreement {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    line-height: 1.5;
}

/* ---------- Футер (центрированный, с соцсетями) ---------- */
.site-footer {
    margin: 15px 0 clamp(24px, 4vw, 48px);
    background: rgba(46, 46, 46, 1);
    border-radius: 30px;
    padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 48px);
    color: #fff;
    box-sizing: border-box;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.site-footer__logo {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.site-footer__tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: -16px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 32px;
}

.site-footer__nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.site-footer__nav a:hover {
    color: var(--orange);
}

.site-footer__socials {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.social:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.social svg {
    width: 20px;
    height: 20px;
}

.site-footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 4px 0 0;
}

/* Оранжевый пин (используется в блоке «Контакты») */
.footer-pin {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    background: url('../../img/pin-orange.svg') center / contain no-repeat;
}

/* ---------- Отдельный блок «Контакты» (структура как в референсе, светлая тема) ---------- */
.contacts {
    margin: clamp(60px, 8vw, 110px) 0;
}
.contacts__heading {
    margin-bottom: clamp(28px, 4vw, 48px);
}
.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 90px);
    align-items: start;
}

/* Подписи разделов СВЯЗЬ / АДРЕСА */
.contacts__label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 16px;
}
.contacts__label--addr {
    margin-top: 40px;
}

/* Телефон с иконкой */
.contacts__phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}
.contacts__phone:hover {
    color: var(--orange);
}
.contacts__phone-ic {
    color: var(--orange);
    flex-shrink: 0;
}
.contacts__schedule {
    font-size: 16px;
    color: var(--grey);
    margin: 14px 0 0;
}

/* Адреса: город жирным + улица ниже */
.contacts__addresses {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contacts__address {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contacts__address .footer-pin {
    width: 20px;
    height: 20px;
    margin-top: 4px;
}
.contacts__address-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contacts__city {
    font-size: 21px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}
.contacts__street {
    font-size: 15px;
    color: var(--grey);
}

/* Правая часть — карточка формы */
.contacts__form {
    background: #fff;
    border: 1px solid rgba(28, 28, 26, 0.12);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 44px);
}
.contacts__form-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 12px;
}
.contacts__form-heading {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin: 0 0 28px;
}

/* Поля: подпись сверху + инпут-подчёркивание */
.contacts .request-form__form {
    align-items: stretch;
    gap: 24px;
    max-width: none;
}
.contacts__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}
.contacts__field-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey);
}
.contacts .request-form__input {
    width: 100%;
    height: auto;
    max-width: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(28, 28, 26, 0.18);
    border-radius: 0;
    padding: 8px 2px;
    color: var(--dark);
    font-size: 18px;
}
.contacts .request-form__input::placeholder {
    color: rgba(28, 28, 26, 0.35);
}
.contacts .request-form__input:focus {
    box-shadow: none;
    border-bottom-color: var(--orange);
}

/* Кнопка — как везде на сайте: сплошной оранжевый, скруглённая (pill) */
.contacts .request-form__btn.contacts__btn {
    height: 60px;
    max-width: none;
    margin-top: 8px;
    border-radius: 100px;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.contacts__agreement {
    font-size: 13px;
    color: var(--grey);
    margin: 10px 0 0;
    line-height: 1.5;
    white-space: nowrap;
}
@media (max-width: 520px) {
    .contacts__agreement { white-space: normal; }
}
.contacts .request-form__notice {
    max-width: none;
    text-align: left;
    margin: 0 0 18px;
}

@media (max-width: 768px) {
    .contacts__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}
