/* ============================================
   CONTACT MAP COMPONENT
   ============================================ */

/* Map container styles */
.map-embed {
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Map placeholder styles */
.map-placeholder {
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    text-align: center;
    color: var(--gray-600);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: var(--space-lg);
}

.map-placeholder h4 {
    font-size: var(--text-xl);
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.map-placeholder p {
    color: var(--gray-600);
    margin: 0;
}

/* Error state styles */
.map-error {
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    text-align: center;
    color: var(--gray-600);
}

.map-error i {
    font-size: 2rem;
    color: var(--error);
    margin-bottom: var(--space-sm);
}

.map-error p {
    margin: 0;
    color: var(--gray-600);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    #map,
    .map-placeholder,
    .map-error {
        min-height: 300px;
        padding: var(--space-xl);
    }

    .map-placeholder i,
    .map-error i {
        font-size: 2.5rem;
    }

    .map-placeholder h4 {
        font-size: var(--text-lg);
    }
}
