/* ===============================
   SEDES MAQSER
=============================== */

.locations-section {
    padding: 80px 0;
    background: var(--white, #fff);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.location-card {
    display: flex;
    gap: 1.15rem;
    padding: 1.5rem 1.35rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-dark, #1565c0) 0%, var(--primary-color, #1e88e5) 55%, var(--accent-color, #00bcd4) 100%);
    color: #fff;
    box-shadow: 0 12px 32px rgba(30, 136, 229, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100%;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(30, 136, 229, 0.28);
}

.location-card--upcoming {
    background: linear-gradient(135deg, #455a64 0%, #607d8b 55%, #78909c 100%);
    box-shadow: 0 12px 32px rgba(69, 90, 100, 0.2);
}

.location-card--upcoming:hover {
    box-shadow: 0 16px 40px rgba(69, 90, 100, 0.28);
}

.location-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.location-card__body {
    flex: 1;
    min-width: 0;
}

.location-card__label {
    display: inline-block;
    margin: 0 0 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.location-card__city {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.location-card__address {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.location-card__badge {
    display: inline-block;
    margin-top: 0.65rem;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media (max-width: 767px) {
    .locations-section {
        padding: 50px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .location-card {
        padding: 1.25rem 1.1rem;
    }

    .location-card__icon {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .location-card__city {
        font-size: 1rem;
    }
}
