/* ==================== СТИЛИ ДЛЯ СТРАНИЦЫ "КОНТАКТЫ" ==================== */
.contacts-page {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contacts-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contacts-header h1 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.contacts-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.contacts-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Контактная информация */
.contacts-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-info {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.contact-info address {
    margin-bottom: 40px;
}

.contact-info p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 30px;
    text-align: center;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Карта */
.map-container {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.map-container h2 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.map-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.map-placeholder {
    height: 400px;
    background: var(--bg-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '\f041';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.2;
    margin-right: 15px;
}

/* Форма обратной связи (если будет добавлена позже) */
.contact-form {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.contact-form h2 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Адаптивные стили */
@media (max-width: 968px) {
    .contact-info,
    .map-container,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contacts-header h1 {
        font-size: 2.2rem;
    }
    
    .contacts-header p {
        font-size: 1.1rem;
    }
    
    .contact-info,
    .map-container,
    .contact-form {
        padding: 20px;
    }
    
    .contact-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .map-placeholder {
        height: 300px;
        flex-direction: column;
        text-align: center;
    }
}