/* ===== HERO ===== */
.contact-hero {
    text-align: center;
    padding: 120px 20px 70px;
    background: linear-gradient(to bottom, #f6f0ff, #faf7ff);
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #6c2ef4;
    letter-spacing: 0.06em;
}

.contact-hero p {
    margin-top: 10px;
    font-size: 18px;
    color: #555;
}

/* ===== WRAPPER ===== */
.contact-wrapper {
    display: flex;
    gap: 60px;
    padding: 80px 10%;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: #6c2ef4;
    margin-bottom: 25px;
    font-weight: 700;
}

.info-block {
    margin-bottom: 25px;
}

.info-block h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-block p,
.info-block a {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
    text-decoration: none;
}

/* ===== MAP ===== */
.contact-map {
    flex: 1.3;
}

.contact-map iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

/* ===== RESPONSIVE ===== */
@media(max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}
