.contacts-page {
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

/* Hero секция */
.contacts-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.contacts-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contacts-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Сетка контактов */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Контактная информация */
.contacts-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.contacts-info h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.contact-group {
    margin-bottom: 30px;
}

.contact-group h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid #1a1a2e;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: baseline;
    gap: 15px;
    font-size: 15px;
}

.contact-label {
    min-width: 120px;
    color: #666;
    font-weight: 500;
}

.contact-value {
    color: #333;
}

.contact-value a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: #4a4a6a;
    text-decoration: underline;
}

/* Реквизиты */
.requisites {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
}

.requisite-item {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.requisite-item:last-child {
    margin-bottom: 0;
}

.requisite-label {
    min-width: 120px;
    color: #666;
    font-weight: 500;
}

/* Карта */
.contacts-map {
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-note {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.map-note p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.map-note p:last-child {
    margin-bottom: 0;
}

.map-note strong {
    color: #1a1a2e;
}

/* Стили для режима работы */
.contact-schedule {
    line-height: 1.6;
}

.contact-schedule p {
    margin: 5px 0;
}

.schedule-days {
    font-weight: 500;
    color: #333;
}

.schedule-time {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.schedule-note {
    color: #28a745;
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .contacts-hero-content h1 {
        font-size: 32px;
    }

    .contacts-hero-content p {
        font-size: 16px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-item {
        flex-direction: column;
        gap: 5px;
    }

    .contact-label {
        min-width: auto;
    }

    .requisite-item {
        flex-direction: column;
    }

    .requisite-label {
        min-width: auto;
        margin-bottom: 3px;
    }
}

@media (max-width: 480px) {
    .contacts-hero {
        padding: 40px 20px;
    }

    .contacts-info {
        padding: 20px;
    }

    .map-container {
        height: 250px;
    }
}