.contacts-page {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hero */
.contacts-hero {
    background: linear-gradient(135deg, #1a2550 0%, #243674 60%, #2d4a9e 100%);
    padding: 72px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contacts-hero-deco {
    position: absolute;
    opacity: 0.07;
    pointer-events: none;
}
.contacts-hero-deco--tr {
    width: 320px; height: 320px;
    top: -60px; right: -60px;
}
.contacts-hero-deco--bl {
    width: 240px; height: 240px;
    bottom: -80px; left: -40px;
}

.contacts-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.contacts-hero h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 400;
    margin: 0 0 14px;
    letter-spacing: 0.01em;
}

.contacts-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin: 0;
}

/* Contact Cards Section */
.contact-info-section {
    padding: 56px 24px;
    background: #f4f6fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(36,54,116,0.08);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(36,54,116,0.14);
}

.contact-icon {
    background: #243674;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-content h3 {
    color: #243674;
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-content p,
.contact-content a {
    color: #555;
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-content a:hover {
    color: #243674;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.phone-label {
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
}

.phone-item a {
    color: #243674;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Map Section */
.map-section {
    padding: 48px 24px;
    background: #fff;
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
}

.map-title {
    color: #243674;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 auto 28px auto;
    padding: 0;
    text-align: center;
}

.map {
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(36,54,116,0.10);
}

/* Hide Leaflet controls */
.leaflet-control-attribution,
.leaflet-control-zoom {
    display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .contacts-hero {
        padding: 48px 16px 40px;
    }

    .contacts-hero h1 {
        font-size: 1.8rem;
    }

    .contact-info-section {
        padding: 32px 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card:last-child {
        grid-column: span 1;
    }

    .map {
        height: 320px;
    }
}
