/* Contact page */
.contact-hero {
    background: var(--primary-soft);
    position: relative;
    padding-bottom: 120px;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #fff);
    z-index: 1;
}

.contact-lead {
    max-width: 850px;
}

.contact-info-grid {
    position: relative;
    z-index: 5;
    margin-top: -80px;
}

.info-pill-card {
    background: white;
    border-radius: 28px;
    padding: 45px 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .02);
}

.info-pill-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 40px 80px rgba(0, 174, 239, .12);
}

.info-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.info-pill-card:hover .info-icon-wrapper {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.info-label {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gray-light);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    word-break: break-word;
}

.info-value-pec {
    font-size: .85rem;
}

.map-section {
    padding: 100px 0 50px;
    background: white;
}

.map-frame-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 30px 30px rgba(0, 0, 0, .08);
    border: 1px solid var(--border);
}

.map-iframe {
    width: 100%;
    height: 650px;
    border: 0;
    filter: grayscale(.2) contrast(1.1) !important;
}

.local-map-panel {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fbfd 0%, #eef6f9 48%, #f8fafc 100%);
}

.local-map-grid {
    position: absolute;
    inset: 0;
    opacity: .65;
    background-image:
        linear-gradient(90deg, rgba(0, 174, 239, .16) 1px, transparent 1px),
        linear-gradient(rgba(0, 174, 239, .16) 1px, transparent 1px);
    background-size: 56px 56px;
}

.local-map-pin {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translateX(-50%);
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #00aeef;
    color: #fff;
    font-size: 2.1rem;
    box-shadow: 0 18px 40px rgba(0, 174, 239, .28);
}

.local-map-card {
    position: relative;
    z-index: 1;
    width: min(92%, 520px);
    margin-top: 120px;
    padding: 36px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 30px 70px rgba(15, 23, 42, .12);
    text-align: center;
}

.local-map-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 800;
}

.local-map-card p {
    margin-bottom: 8px;
    color: var(--text);
}

.local-map-card small {
    color: var(--text-light);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .contact-form-wrapper {
        padding: 60px 40px;
    }

    .corporate-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .contact-info-grid {
        margin-top: -40px;
    }

    .map-iframe {
        height: 450px;
    }

    .local-map-panel {
        min-height: 450px;
    }

    .local-map-card {
        padding: 28px 22px;
    }
}
