.location-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}
.location-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.location-header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #333;
}
.location-type-badge {
    background: #2a5bd7;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}
.location-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}
.location-services h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}
.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}
.service-mini-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
.service-mini-card:hover {
    border-color: #2a5bd7;
    box-shadow: 0 5px 15px rgba(42,91,215,0.1);
}
.service-icon {
    font-size: 1.5rem;
}
.service-name {
    font-weight: 500;
}
.location-cta {
    text-align: center;
    margin-top: 50px;
}
.cta-button {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.cta-button:hover {
    background: #e05a00;
}
@media (max-width: 768px) {
    .location-header h1 { font-size: 1.8rem; }
    .services-mini-grid { grid-template-columns: 1fr; }
}