/* ========================================
   Стили для страницы "Контакты"
   ======================================== */

/* Левая панель с контактной информацией */
.contacts-left-panel {
    background: #2b2b2b;
    color: #fff;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.contacts-left-panel h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
}

.contacts-info-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contacts-info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contacts-info-section p {
    color: #fff;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.contacts-info-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contacts-info-section a:hover {
    color: #ddd;
    text-decoration: underline;
}

/* Часы работы - выделенный блок */
.hours-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

.hours-section p {
    margin-bottom: 5px;
}

/* Правая колонка - форма */
.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-form-desc {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .contacts-left-panel {
        padding: 20px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}
/* Кнопка отправки формы - синий цвет #3d51ad */
.contact-form-wrapper .btn__secondary,
.contact-form-wrapper button[type="submit"] {
    background-color: #3d51ad !important;
    color: #fff !important;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
    max-width: 300px;
}

.contact-form-wrapper .btn__secondary:hover,
.contact-form-wrapper button[type="submit"]:hover {
    background-color: #2d3f8f !important;
}
/* ========================================
   Финальные исправления для страницы "Контакты"
   ======================================== */

/* Кнопка отправки формы - синий цвет #3d51ad с центрированным текстом */
.contact-form-wrapper .btn__secondary,
.contact-form-wrapper button[type="submit"] {
    background-color: #3d51ad !important;
    color: #fff !important;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-form-wrapper .btn__secondary:hover,
.contact-form-wrapper button[type="submit"]:hover {
    background-color: #2d3f8f !important;
}

/* Уменьшаем расстояние между блоками (форма и карта) в 3 раза */
.contacts-page-wrapper {
    margin-bottom: 30px !important;
}

.ymap {
    margin-top: 30px !important;
}

/* Убираем лишние отступы у секции с картой */
.ymap .container {
    padding-top: 0;
}
