/* --- HERO SEKCE --- */
.contact-hero {
    height: 50vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.title-underline {
    width: 100px;
    height: 3px;
    background: var(--brand-blue);
    margin: 20px auto 0;
}

/* --- KONTAKTNÍ PRVKY --- */
.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.map-container {
    height: 450px;
    border: 1px solid rgba(0,0,0,0.05);
}

.map-container iframe {
    height: 100%;
}

.social-btn {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #212529;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--brand-blue);
    transform: translateY(-3px);
    color: #fff;
}

/* Úprava section-title pro Kontakt (zarovnání vlevo) */
.section-title::after {
    left: 0;
    transform: none;
}

/* --- RESPONZIVITA --- */
@media (max-width: 768px) {
    .contact-hero { height: 40vh; }
    .modern-title { font-size: 1.8rem; letter-spacing: 4px; }
    .map-container { height: 350px; }
}