/* Contacts page — info, map, feedback form. Variables: site.css */

.contact-info-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-gray);
    color: var(--main-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 20px;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background-color: var(--main-red);
    color: #fff;
}

.contact-text h5 {
    font-weight: 800;
    color: var(--main-blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    color: #555;
    margin: 0;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-text a:hover {
    color: var(--main-red);
}

.map-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    border: 2px solid #eaeaea;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.feedback-form-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(4, 31, 74, 0.08);
    height: 100%;
    border-top: 5px solid var(--main-blue);
}

.form-title {
    font-weight: 900;
    color: var(--main-blue);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: var(--main-blue);
    font-size: 0.9rem;
}

.feedback-form-box .form-control,
.feedback-form-box .form-select {
    border: 1px solid #dce1e6;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    background-color: var(--bg-gray);
    transition: all 0.3s;
}

.feedback-form-box .form-control:focus,
.feedback-form-box .form-select:focus {
    border-color: var(--main-blue);
    box-shadow: 0 0 0 0.25rem rgba(4, 31, 74, 0.1);
    background-color: #fff;
}

.btn-submit {
    background-color: var(--main-red);
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-submit:hover {
    background-color: #c90b0b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 16, 16, 0.3);
}

.form-check-label {
    font-size: 0.85rem;
    color: #666;
}

.form-check-label a {
    color: var(--main-blue);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .feedback-form-box {
        padding: 25px;
        margin-top: 30px;
    }
}
