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

.contact-page {
    max-width: 1100px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-card__icon {
    flex: 0 0 45px;
    height: 45px;
    background-color: #f0f7ff;
    color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.contact-card__content {
    flex: 1;
}

.contact-card__title {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}

.contact-card p {
    margin: 0 0 8px;
    line-height: 1.6;
    color: #555;
}

.contact-card__phone {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
}

.contact-card__note {
    font-size: 0.9em;
    color: #777;
}

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

.contact-links li {
    margin-bottom: 10px;
}

.contact-links a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

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

.contact-links .fa-brands,
.contact-links .fa-regular,
.contact-links .fa-solid {
    margin-right: 10px;
    font-size: 1.2em;
    width: 20px;
    text-align: center;
}

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

.company-details li {
    margin-bottom: 8px;
    color: #555;
}

.company-details span {
    font-weight: 600;
    color: #333;
    display: inline-block;
    width: 60px;
}

.map-section {
    text-align: center;
    margin-top: 30px;
}

.map-section__title {
    margin-bottom: 20px;
    font-size: 24px;
}

.map-section__iframe-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.contact-page p:empty {
    display: none;
}

.entry-title {
    text-align: center;
}