/* Подвал — структура по образцу steingot.ru */

.pd-footer {
    background:
        linear-gradient(rgba(60, 45, 35, 0.12), rgba(60, 45, 35, 0.12)),
        url(/img-karkas/fon-text.jpg) no-repeat center center;
    background-size: cover;
    border-top: 8px solid #994809;
    border-bottom: 2px solid #994809;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    padding: 36px 0 0;
    color: #333;
}

.pd-footer__container {
    max-width: 1170px;
}

.pd-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 24px;
    padding-bottom: 28px;
}

.pd-footer__col {
    flex: 1 1 200px;
    min-width: 0;
}

.pd-footer__col--contacts {
    flex: 1 1 240px;
    max-width: 280px;
}

.pd-footer__center {
    display: flex;
    flex: 2 1 360px;
    gap: 24px;
    flex-wrap: wrap;
}

.pd-footer__center .pd-footer__col {
    flex: 1 1 160px;
}

.pd-footer__col--form {
    flex: 1 1 260px;
    max-width: 320px;
}

.pd-footer__title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #994809;
    margin: 0 0 14px;
    letter-spacing: 0.3px;
}

.pd-footer__about {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 16px;
    color: #444;
}

.pd-footer__link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.pd-footer__link a {
    color: #333;
    text-decoration: none;
}

.pd-footer__link a:hover {
    color: #cf4104;
    text-decoration: underline;
}

.pd-footer__link i {
    color: #994809;
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pd-footer__label {
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
    margin: 0 0 4px;
    letter-spacing: 0.2px;
}

.pd-footer__nav a {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 6px;
    text-decoration: none;
}

.pd-footer__nav a:hover {
    color: #cf4104;
}

.pd-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.pd-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    background: #888;
}

.pd-footer__social a.pd-footer__social--wa {
    background: #25d366;
}

.pd-footer__social a.pd-footer__social--tg {
    background: #2ca5e0;
}

.pd-footer__social a.pd-footer__social--max {
    width: auto;
    min-width: 32px;
    padding: 0 8px;
    border-radius: 6px;
    background: #5b4dff;
    font-size: 10px;
    font-weight: 700;
}

/* Форма заявки */
.pd-footer-form__message {
    margin-bottom: 10px;
    font-size: 13px;
}

.pd-footer-form__message .notification_ok {
    color: #2e7d32;
}

.pd-footer-form__message .notification_error {
    color: #c62828;
}

.pd-footer-form .form-group {
    margin-bottom: 10px;
}

.pd-footer-form .form-control {
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: none;
}

.pd-footer-form .form-control:focus {
    border-color: #994809;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(153, 72, 9, 0.15);
}

.pd-footer-form__privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 12px 0 14px;
    font-size: 12px;
    line-height: 1.45;
    color: #555;
    cursor: pointer;
}

.pd-footer-form__privacy input {
    margin: 3px 0 0;
    flex-shrink: 0;
}

.pd-footer-form__privacy a {
    color: #cf4104;
    text-decoration: underline;
}

.pd-footer-form__submit {
    display: block;
    width: 100%;
    border: 0;
    background: linear-gradient(270deg, #cf4104 0%, #e85a1a 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 16px;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.pd-footer-form__submit:hover {
    opacity: 0.92;
}

.pd-footer__note {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.45;
    color: #777;
}

.pd-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 13px;
    color: #555;
}

.pd-footer__bottom a {
    color: #555;
    text-decoration: none;
}

.pd-footer__bottom a:hover {
    color: #cf4104;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .pd-footer__col--contacts,
    .pd-footer__col--form {
        max-width: none;
        flex: 1 1 100%;
    }

    .pd-footer__center {
        flex: 1 1 100%;
    }
}

@media (max-width: 767px) {
    .pd-footer {
        padding-top: 24px;
    }

    .pd-footer__top {
        gap: 24px;
    }

    .pd-footer__center {
        flex-direction: column;
    }
}
