/* ====================================================
   NEW MOON V1 - CONTACT PAGE STYLES
   ==================================================== */

.contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    padding-top: var(--navbar-height);
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.contact-hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.map-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.map-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    background: var(--gray-light);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

