/* Секция контактов */
.contacts-section {
    background-color: #fff;
}

.contacts-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px !important;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    font-size: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
    color:#333;
}

.contact-item i {
    font-size: 20px;
    color: #9B9B9B;
    margin-right: 15px;
    margin-top: 1px;
}

.contact-item span {
    font-size: 20px;
    line-height: 1.4;
}

.contact-links a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #dc3545;
}

.contacts-photo {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 10px;
}

/* Форма обратной связи */
.callback-form-container {
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.callback-form-container .form-content {
    width: 100%;
    max-width: 400px;
}

.callback-form-container h3 {
    font-size: 24px;
    font-weight: 600;
}

.callback-form-container .subtitle {
    color: #6c757d;
    font-size: 16px;
}

.callback-form-container .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

/* Сообщение об успехе */
.success-message {
    text-align: center;
    display: none;
    width: 100%;
    max-width: 400px;
}

.success-icon i {
    font-size: 48px;
    color: #28a745;
}

.success-message h3 {
    font-size: 22px;
    margin-top: 15px;
}

.agreement-text {
    font-size: 12px;
    color: #6c757d;
}

.agreement-text a {
    color: #6c757d;
    text-decoration: underline;
}

/* Карта */
.map-container {
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Адаптация */
@media (max-width: 991.98px) {
    .contacts-container,
    .callback-form-container {
        padding: 40px !important;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .contacts-container,
    .callback-form-container {
        padding: 15px 20px !important;
    }
    
    .contact-item i {
        font-size: 18px;
        margin-right: 10px;
    }
    
    .contact-item span {
        font-size: 20px;
    }
    
    .callback-form-container h3 {
        font-size: 20px;
    }
    
    .callback-form-container .subtitle {
        font-size: 14px;
    }
}