/* Contact Map Section with Navy Frame */
.contact-map-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.contact-map-tagline {
    display: inline-block;
    color: #ffa800;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-map-headline {
    font-size: 42px;
    font-weight: 800;
    color: #14176c;
    margin-bottom: 0;
}

.contact-map-frame {
    background-color: #0e104b;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(14, 16, 75, 0.25);
}

.contact-map-inner {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 450px;
}

.contact-map-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-map-section {
        padding: 70px 0;
    }

    .contact-map-headline {
        font-size: 32px;
    }

    .contact-map-frame {
        padding: 20px;
    }

    .contact-map-inner {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-map-frame {
        padding: 15px;
        border-radius: 15px;
    }

    .contact-map-inner {
        height: 280px;
        border-radius: 10px;
    }

    .contact-map-headline {
        font-size: 26px;
    }
}