/* ===================== */
/* Фон страницы наследуется из base.css */
/* ===================== */

/* ===== ОСНОВНОЙ БЛОК С КОНТАКТАМИ ===== */
.main-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    flex-wrap: wrap;
}

/* ===== КАРТОЧКА КОНТАКТОВ ===== */
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 30%;
    padding: 20px;
    gap: 15px;

    border: 2px solid #dea69b;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.wrapper h2 {
    margin: 0;
}

.wrapper p,
.wrapper a {
    line-height: 1.6;
    margin: 4px 0;
    color: #333;
    text-decoration: none;
}

/* ===== КНОПКА TELEGRAM (ссылка вместо button) ===== */
.telegram-btn {
    display: inline-block;
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    background-color: #dea69b;
    color: #000;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.telegram-btn:hover {
    background-color: #ff8d76;
}

/* ===== ФОРМА ОБРАТНОЙ СВЯЗИ ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    width: 30%;
    padding: 20px;
    gap: 15px;

    border: 2px solid #dea69b;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.contact-form h2 {
    margin: 0;
    text-align: center;
}

.contact-form label {
    font-weight: 600;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #dea69b;
    font-size: 14px;
}

.contact-form button {
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background-color: #dea69b;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #ff8d76;
}

/* ===================== */
/* Ссылки на почту и телефон */
/* ===================== */
.email-link,
.telefon {
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

/* ===================== */
/* АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ */
/* ===================== */
@media (max-width: 768px) {
    .main-section {
        flex-direction: column;
        align-items: center;
    }

    .wrapper,
    .contact-form {
        width: 90%;
    }
}
