.location-page {
    padding: 15px 1.5rem;
    background-color: var(--color-bg);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.location-header {
    text-align: center;
    margin-bottom: 20px;
}

.location-tag {
    color: var(--color-brand);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.location-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-text);
    margin: 10px 0;
}

.location-divider {
    width: 60px;
    height: 4px;
    background-color: var(--color-brand);
    margin: 0 auto;
}

/* Grid Layout */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Info & Steps */
.address-card {
    margin-bottom: 40px;
}

.address-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.address-card .region {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.arrival-steps {
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-brand);
    font-weight: 800;
}

.step-text h4 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-text);
}

.step-text p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* GPS Buttons */
.gps-buttons {
    display: flex;
    gap: 15px;
}

.btn-gps {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    transition: transform 0.3s ease;
}

.btn-gps img {
    width: 24px;
    height: 24px;
}

.btn-gps.google {
    background-color: #4285F4;
}

.btn-gps.waze {
    background-color: #33CCFF;
    color: #000;
}

.btn-gps:hover {
    transform: translateY(-3px);
}

/* Map */
.map-wrapper {
    height: 466px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 400px;
    }

    .location-title {
        font-size: 2.2rem;
    }

    .location-header {
        margin-bottom: 60px;
    }

}