﻿.contact-hero {
    background: linear-gradient(135deg,#210645,#442371);
    color: white;
    text-align: center;
    padding: 75px 20px;
    border-radius: 0 0 30px 30px;
}

    .contact-hero h1 {
        font-weight: bold;
        margin-bottom: 15px;
    }

    .contact-hero p {
        max-width: 700px;
        margin: auto;
        opacity: .9;
        line-height: 2;
    }

.contact-container {
    max-width: 1100px;
    margin: 50px auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 25px;
}

.contact-card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    transition: .3s;
}

    .contact-card:hover {
        transform: translateY(-6px);
    }

    .contact-card i {
        font-size: 40px;
        color: #372967;
        margin-bottom: 18px;
    }

    .contact-card h4 {
        color: #210645;
        margin-bottom: 15px;
    }

    .contact-card p {
        color: #666;
        margin: 0;
        line-height: 2;
    }

    .contact-card a {
        color: #372967;
        text-decoration: none;
        font-weight: 600;
    }

        .contact-card a:hover {
            color: #210645;
        }

.map-section {
    margin-top: 50px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

    .map-section iframe {
        width: 100%;
        height: 420px;
        border: 0;
    }

.actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .actions a {
        background: #210645;
        color: white;
        text-decoration: none;
        padding: 14px 28px;
        border-radius: 30px;
        transition: .3s;
    }

        .actions a:hover {
            background: #372967;
        }
